@charset "UTF-8";
/* =======================================================
base
======================================================= */
/* ------- ▼ reset ▼ ------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
*, ::before, ::after {
  border-width: 0;
  border-style: solid;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  clear: both;
  height: 0;
  margin: 0;
  overflow: visible;
  border-top-width: 1px;
  box-sizing: content-box;
  color: inherit;
}

pre {
  font-size: inherit;
  font-family: monospace, monospace;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  vertical-align: middle;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled], [type=button][disabled], [type=reset][disabled], [type=submit][disabled] {
  cursor: default;
}

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

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

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

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ------- ▼ base ▼ ------- */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 3.4666666667vw;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

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

/* =======================================================
C
======================================================= */
/* ===============================
1_component
=============================== */
/* ------- ▼ c-back-to-top ▼ ------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 50px;
  height: 50px;
  border: 1px solid #2ec1a5;
  border-radius: 50px;
  background: #2ec1a5;
}
.back-to-top a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
}
.back-to-top a:before {
  display: block;
  position: absolute;
  top: 25px;
  right: 16px;
  transform: rotate(270deg);
  width: 20px;
  height: 2px;
  background: #fff;
  content: "";
}
.back-to-top a:after {
  display: block;
  position: absolute;
  top: 16px;
  right: 21px;
  transform: rotate(315deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.back-to-top:hover {
  border: 1px solid #2ec1a5;
  background-color: #fff;
  transition: 0.2s;
}
.back-to-top:hover a:before {
  background: #2ec1a5;
}
.back-to-top:hover a:after {
  border-top: 2px solid #2ec1a5;
  border-right: 2px solid #2ec1a5;
}

/* ------- ▼ c-category ▼ ------- */
.c-category {
  position: relative;
  font-weight: bold;
}
.c-category .cate__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-category .cate__lists {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
.c-category .cate__lists .list {
  width: 46%;
  border: 2px solid #2ec1a5;
  border-radius: 50px;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-category .cate__lists .list {
    max-width: 8.25rem;
  }
}
.c-category .cate__lists .list a {
  display: block;
  padding: 2.1333333333vw 0;
  color: #2ec1a5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-category .cate__lists .list a {
    padding: 0.625rem 0;
  }
}
.c-category .cate__lists .list:hover {
  background-color: #2ec1a5;
}
.c-category .cate__lists .list:hover a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-category .cate__lists .list + .list {
    margin-left: 2.3125rem;
  }
}
.c-category .cate__lists .list + .list:nth-child(n+3) {
  margin-top: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-category .cate__lists .list + .list:nth-child(n+3) {
    margin-top: 0;
  }
}

/* ------- ▼ c-wp-pagenavi ▼ ------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
}
.wp-pagenavi .page, .wp-pagenavi .current {
  color: #808080;
  font-weight: lighter;
  font-size: 3.7333333333vw;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .page, .wp-pagenavi .current {
    font-size: 0.9375rem;
  }
}
.wp-pagenavi .current {
  padding: 0.375rem 0.75rem;
  border-radius: 50%;
  background-color: #ff3e33;
  color: #fff;
}
.wp-pagenavi .larger:hover {
  color: #ff3e33;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: inline-block;
  transform: rotate(225deg);
  width: 10px;
  height: 10px;
  border: 2px solid #ff3e33;
  border-bottom: none;
  border-left: none;
  box-sizing: border-box;
}
.wp-pagenavi .nextpostslink {
  transform: rotate(45deg);
}
.wp-pagenavi span + a {
  margin-left: 10.4vw;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi span + a {
    margin-left: 2.375rem;
  }
}
.wp-pagenavi a + span {
  margin-left: 10.4vw;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a + span {
    margin-left: 2.375rem;
  }
}
.wp-pagenavi a + a {
  margin-left: 10.4vw;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a + a {
    margin-left: 2.375rem;
  }
}

/* ===============================
2_layout
=============================== */
/* ------- ▼ c-accordion ▼ ------- */
.c-accordion .item {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
  line-height: 1.7692307692;
}
@media screen and (min-width: 768px) {
  .c-accordion .item {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-accordion .item input {
  opacity: 0;
  position: absolute;
}
.c-accordion .item .question {
  display: block;
  position: relative;
  margin: 0;
  padding: 3.4666666667vw 8.6666666667vw;
  border: 1px solid #ff3e33;
  text-indent: 1em;
  cursor: pointer;
  letter-spacing: 0.015pxem;
}
@media screen and (min-width: 768px) {
  .c-accordion .item .question {
    padding: 1rem 3.5rem;
  }
}
.c-accordion .item .question::before {
  margin-left: -2em;
  padding-right: 0.5em;
  color: #ff3e33;
  font-weight: 600;
  font-size: 4.8vw;
  content: "Q";
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-accordion .item .question::before {
    font-size: 1.75rem;
  }
}
.c-accordion .item .question::after {
  display: inline-block;
  position: absolute;
  top: 8%;
  right: 0;
  width: 2em;
  height: 2em;
  color: #ff3e33;
  font-size: 1.7em;
  line-height: 2em;
  content: "+";
}
@media screen and (min-width: 768px) {
  .c-accordion .item .question::after {
    top: 15px;
  }
}
.c-accordion .item .answer {
  position: relative;
  max-height: 0;
  overflow: hidden;
}
.c-accordion .item .answer p {
  padding: 3.4666666667vw 8.6666666667vw;
  letter-spacing: 0.01pxem;
}
@media screen and (min-width: 768px) {
  .c-accordion .item .answer p {
    padding: 1rem 3.5rem;
  }
}
.c-accordion .item input:checked ~ .question {
  background-color: #ff3e33;
  color: #fff;
}
.c-accordion .item input:checked ~ .question::before {
  color: #fff;
}
.c-accordion .item input:checked ~ .question::after {
  color: #fff;
  content: "−";
}
.c-accordion .item input:checked ~ .answer {
  max-height: 40em;
  border: 1px solid #ff3e33;
}
.c-accordion .item + .item {
  margin-top: 4.8vw;
}
@media screen and (min-width: 768px) {
  .c-accordion .item + .item {
    margin-top: 1.125rem;
  }
}

/* ------- ▼ c-cta ▼ ------- */
.c-cta {
  padding: 16vw 0;
  background-color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 6.25rem 0;
    background: linear-gradient(to bottom, #ff3e33 0%, #ff3e33 65%, #fff 65%, #fff 100%);
  }
}
.c-cta .wrap {
  max-width: 74.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap {
    max-width: 72.5rem;
  }
}
.c-cta .wrap .catch {
  color: #fff;
  font-weight: bold;
  font-size: 4.2666666667vw;
  text-align: center;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .catch {
    font-size: 2.25rem;
  }
}
.c-cta .wrap .cards {
  padding-top: 10.1333333333vw;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards {
    display: flex;
    padding-top: 4.1875rem;
  }
}
.c-cta .wrap .cards .card {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ff3e33;
  border-radius: 5.3333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card {
    width: calc((100% - 40px * 2) / 3);
    border-radius: 8%;
  }
}
.c-cta .wrap .cards .card a {
  display: block;
  width: 100%;
  padding: 12.8vw 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card a {
    padding: 3.875rem 0;
  }
}
.c-cta .wrap .cards .card a .text {
  color: #ff3e33;
  font-weight: bold;
  font-size: 4.2666666667vw;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6153846154;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card a .text {
    font-size: 1.625rem;
  }
}
.c-cta .wrap .cards .card a .pic {
  padding-top: 8vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card a .pic {
    padding-top: 3.75rem;
  }
}
.c-cta .wrap .cards .card a .pic img {
  width: 100%;
  max-width: 15.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card a .pic img {
    max-width: none;
    max-height: 5rem;
  }
}
.c-cta .wrap .cards .card a:hover {
  opacity: 0.5;
}
.c-cta .wrap .cards .card + .card {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .c-cta .wrap .cards .card + .card {
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

/* ------- ▼ c-feature1 ▼ ------- */
.c-feature1 {
  padding: 14.9333333333vw 0 18.1333333333vw;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-feature1 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-feature1 {
    padding: 7.5rem 0;
  }
}
.c-feature1 .catch--en {
  color: #2ec1a5;
  font-weight: 600;
  font-size: 8vw;
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-feature1 .catch--en {
    font-size: 3.4375rem;
  }
}
.c-feature1 .catch--en span {
  color: #ff3e33;
}
.c-feature1 .pic {
  padding-top: 9.6vw;
}
@media screen and (min-width: 768px) {
  .c-feature1 .pic {
    padding-top: 4.4375rem;
  }
}
.c-feature1 .pic img {
  width: 100%;
  height: 53.3333333333vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-feature1 .pic img {
    height: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .c-feature1 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5.375rem;
  }
}
.c-feature1 .wrap .catch {
  padding-top: 9.3333333333vw;
  font-weight: bold;
  font-size: 6.9333333333vw;
  text-align: center;
  line-height: 1.6153846154;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-feature1 .wrap .catch {
    width: 43%;
    padding-top: 0;
    font-size: 2.25rem;
    text-align: left;
    line-height: 1.6111111111;
  }
}
.c-feature1 .wrap .texts {
  padding-top: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-feature1 .wrap .texts {
    width: 57%;
    padding-top: 0;
    padding-left: 2.5rem;
  }
}
.c-feature1 .wrap .texts .text {
  line-height: 1.7692307692;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .c-feature1 .wrap .texts .text {
    line-height: 2;
  }
}
.c-feature1 .c-button {
  max-width: 67.2vw;
  margin-top: 11.2vw;
  margin-right: auto;
  margin-left: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 50px;
  background-color: #ff3e33;
  transition: 0.3s;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.12em;
}
.c-feature1 .c-button a {
  display: block;
  padding: 5.3333333333vw 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-feature1 .c-button a {
    padding: 1.125rem 0;
  }
}
.c-feature1 .c-button:hover {
  background-color: #fff;
}
.c-feature1 .c-button:hover a {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-feature1 .c-button {
    max-width: 22.5rem;
    margin-top: 4.625rem;
  }
}

/* ------- ▼ c-feature2 ▼ ------- */
.c-feature2 {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-feature2 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-feature2 .pic img {
  width: 100%;
  height: 53.3333333333vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-feature2 .pic img {
    height: 30rem;
  }
}
.c-feature2 .catch--en {
  padding-top: 10.6666666667vw;
  color: #2ec1a5;
  font-weight: 600;
  font-size: 8vw;
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-feature2 .catch--en {
    padding-top: 5.375rem;
    font-size: 3.4375rem;
  }
}
.c-feature2 .catch--en span {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-feature2 .wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 5.375rem;
  }
}
.c-feature2 .wrap .catch {
  padding-top: 9.3333333333vw;
  font-weight: bold;
  font-size: 6.9333333333vw;
  text-align: center;
  line-height: 1.6153846154;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-feature2 .wrap .catch {
    width: 43%;
    padding-top: 0;
    font-size: 2.25rem;
    text-align: left;
    line-height: 1.6111111111;
  }
}
.c-feature2 .wrap .texts {
  padding-top: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-feature2 .wrap .texts {
    width: 57%;
    padding-top: 0;
    padding-left: 2.5rem;
  }
}
.c-feature2 .wrap .texts .text {
  line-height: 1.7692307692;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .c-feature2 .wrap .texts .text {
    line-height: 2;
  }
}

/* ------- ▼ c-feature3 ▼ ------- */
.c-feature3 .item {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-feature3 .item {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .pic {
    width: 50%;
  }
}
.c-feature3 .item .pic img {
  width: 100%;
  height: 60.2666666667vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .pic img {
    max-width: 31.25rem;
    height: 21.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .content {
    width: 50%;
    padding-left: 2.5rem;
  }
}
.c-feature3 .item .content .number {
  padding-top: 6.4vw;
  color: #ff3e33;
  font-weight: 600;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .content .number {
    padding-top: 0;
    font-size: 1.125rem;
  }
}
.c-feature3 .item .content .number span {
  color: #2ec1a5;
}
.c-feature3 .item .content .catch {
  padding-top: 4.5333333333vw;
  font-weight: bold;
  font-size: 5.8666666667vw;
  line-height: 1.6111111111;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .content .catch {
    padding-top: 2rem;
    font-size: 2.125rem;
  }
}
.c-feature3 .item .content .text {
  padding-top: 6.4vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item .content .text {
    padding-top: 2.1875rem;
  }
}
.c-feature3 .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item:nth-child(even) .content {
    padding-right: 2.5rem;
    padding-left: 0;
  }
}
.c-feature3 .item + .item {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .c-feature3 .item + .item {
    padding-top: 7.5rem;
  }
}

/* ------- ▼ c-footer ▼ ------- */
.c-footer {
  text-align: center;
}
.c-footer .top {
  padding: 9.8666666667vw 0;
}
@media screen and (min-width: 768px) {
  .c-footer .top {
    padding: 5.9375rem 0 4.1875rem;
  }
}
.c-footer .top .logo {
  text-align: center;
}
.c-footer .top .logo img {
  width: 100%;
  max-width: 61.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-footer .top .logo img {
    max-width: 27.5rem;
  }
}
.c-footer .top .share {
  display: flex;
  justify-content: center;
  padding-top: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .c-footer .top .share {
    padding-top: 3.625rem;
  }
}
.c-footer .top .share .share__logo {
  width: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-footer .top .share .share__logo {
    width: 1.5rem;
  }
}
.c-footer .top .share .share__logo + .share__logo {
  margin-left: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .c-footer .top .share .share__logo + .share__logo {
    margin-left: 3.75rem;
  }
}
.c-footer .bottom {
  padding: 6.1333333333vw 0;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-footer .bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 2.625rem 0;
  }
}
.c-footer .bottom .company__logo img {
  width: 100%;
  max-width: 41.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-footer .bottom .company__logo img {
    width: 11.875rem;
    max-width: none;
  }
}
.c-footer .bottom .copyright {
  padding-top: 4vw;
  color: #fff;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .c-footer .bottom .copyright {
    padding-top: 0;
    padding-left: 3.125rem;
    font-size: 0.75rem;
  }
}

/* ------- ▼ c-form ▼ ------- */
.c-form .form__title {
  padding-top: 11.2vw;
  font-size: 3.7333333333vw;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-form .form__title {
    padding-top: 6.0625rem;
    font-size: 1.375rem;
  }
}
.c-form .form__title:before {
  display: inline-block;
  width: 5.6vw;
  height: 4vw;
  margin-right: 1.8666666667vw;
  background-image: url(../images/common/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  content: "";
}
@media screen and (min-width: 768px) {
  .c-form .form__title:before {
    width: 2.625rem;
    height: 2.1875rem;
    margin-right: 1.5625rem;
  }
}
.c-form .form__content .form__item {
  padding-top: 6.4vw;
  padding-bottom: 6.4vw;
  border-top: 1px solid #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
  }
}
.c-form .form__content .form__item:last-of-type {
  border-bottom: 1px solid #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__item:last-of-type {
    align-items: flex-start;
  }
}
.c-form .form__content .form__item .form__term {
  color: #ff3e33;
  font-weight: inherit;
  font-weight: bold;
}
.c-form .form__content .form__item .form__term .required {
  margin-left: 1.6vw;
  color: #2ec1a5;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__item .form__term .required {
    margin-left: 0.375rem;
  }
}
.c-form .form__content .form__item .form__desc {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__item .form__desc {
    width: 75%;
    padding-top: 0;
    padding-left: 1.0625rem;
  }
}
.c-form .form__content .form__item .form__desc input {
  width: 100%;
  padding: 0.9375rem 1.5625rem;
  border: 1px solid rgba(128, 128, 128, 0.4);
}
.c-form .form__content .form__item .form__desc textarea {
  width: 100%;
  padding: 0.9375rem 1.5625rem;
  border: 1px solid rgba(128, 128, 128, 0.4);
}
.c-form .form__content .form__text {
  padding-top: 9.6vw;
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__text {
    padding-top: 4.0625rem;
    text-align: center;
  }
}
.c-form .form__content .privacy__title {
  padding-top: 8vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .privacy__title {
    padding-top: 4.0625rem;
    text-align: left;
  }
}
.c-form .form__content .privacy {
  width: 88vw;
  height: 78.6666666667vw;
  margin-top: 5.0666666667vw;
  margin-right: auto;
  margin-left: auto;
  padding: 4.5333333333vw;
  overflow: scroll;
  border: 1px solid rgba(128, 128, 128, 0.3);
  line-height: 1.6153846154;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .privacy {
    width: 100%;
    height: 18.4375rem;
    margin-top: 1.25rem;
    padding: 2.8125rem 1.875rem;
  }
}
.c-form .form__content .privacy .privacy__inner {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .privacy .privacy__inner {
    font-size: 0.8125rem;
  }
}
.c-form .form__content .privacy .privacy__inner .privacy__term {
  padding-top: 2.6666666667vw;
  font-weight: normal;
}
.c-form .form__content .privacy .privacy__inner .privacy__term:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .privacy .privacy__inner .privacy__term {
    padding-top: 0.625rem;
  }
}
.c-form .form__content .privacy .privacy__inner .privacy__desc .privacy__lists {
  list-style-position: inside;
}
.c-form .form__content .form__check {
  padding-top: 8vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__check {
    padding-top: 3.125rem;
  }
}
.c-form .form__content .form__check input {
  margin-right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .form__check input {
    margin-right: 1.25rem;
  }
}
.c-form .form__content .c-button {
  width: 67.2vw;
  margin-top: 6.4vw;
  margin-right: auto;
  margin-left: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 50px;
  background-color: #ff3e33;
  transition: 0.3s;
}
.c-form .form__content .c-button a {
  display: block;
  padding: 5.3333333333vw 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .c-button a {
    padding: 1.125rem 0;
  }
}
.c-form .form__content .c-button:hover {
  background-color: #fff;
}
.c-form .form__content .c-button:hover a {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-form .form__content .c-button {
    width: 22.5rem;
    margin-top: 3.125rem;
  }
}

/* ------- ▼ c-header ▼ ------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  transition: 0.2s;
}
.c-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.875rem;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-header .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-header .wrap {
    height: 6.75rem;
  }
}
.c-header .wrap .logo img {
  width: 100%;
  max-width: 65.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .logo img {
    max-width: 21.875rem;
  }
}
.c-header .wrap .gnav {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .gnav {
    display: block;
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-header .wrap .gnav {
    padding-left: 3.125rem;
  }
}
.c-header .wrap .gnav .gnav__lists {
  display: flex;
  align-items: baseline;
}
.c-header .wrap .gnav .gnav__lists .list {
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .gnav .gnav__lists .list {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-header .wrap .gnav .gnav__lists .list {
    font-size: 0.875rem;
  }
}
.c-header .wrap .gnav .gnav__lists .list a:hover {
  color: #ff3e33;
  transition: 0.3s;
}
.c-header .wrap .gnav .gnav__lists .list__contact {
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 10.6666666667vw;
  background-color: #ff3e33;
  color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .gnav .gnav__lists .list__contact {
    padding: 0.1875rem 1.125rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-header .wrap .gnav .gnav__lists .list__contact {
    padding: 0.375rem 2.1875rem;
    font-size: 0.875rem;
  }
}
.c-header .wrap .gnav .gnav__lists .list__contact:hover {
  background-color: #fff;
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .gnav .gnav__lists .list + .list {
    margin-left: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-header .wrap .gnav .gnav__lists .list + .list {
    margin-left: 2.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .c-header .wrap .gnav .gnav__lists .list + .list__contact {
    margin-left: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-header .wrap .gnav .gnav__lists .list + .list__contact {
    margin-left: 2.1875rem;
  }
}
.c-header .wrap .drawer {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .drawer {
    display: none;
  }
}
.c-header .wrap .drawer .hidden {
  display: none;
}
.c-header .wrap .drawer .open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  width: 40px;
  height: 42px;
  cursor: pointer;
}
.c-header .wrap .drawer .open span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 3px;
  background: #ff3e33;
  content: "";
  transition: 0.5s;
}
.c-header .wrap .drawer .open span:first-child {
  top: 15px;
}
.c-header .wrap .drawer .open span:last-child {
  bottom: 15px;
}
.c-header .wrap .drawer #check:checked ~ .open span {
  background: rgba(0, 0, 0, 0);
}
.c-header .wrap .drawer #check:checked ~ .open span:first-child {
  top: 25px;
  transform: rotate(-45deg);
  background: #ff3e33;
}
.c-header .wrap .drawer #check:checked ~ .open span:last-child {
  transform: rotate(45deg);
  background: #ff3e33;
}
.c-header .wrap .drawer #check:checked ~ .content {
  left: 0;
}
.c-header .wrap .drawer .content {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 50;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.6s;
}
.c-header .wrap .drawer .content .drawer__lists {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-header .wrap .drawer .content .drawer__lists .list {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-header .wrap .drawer .content .drawer__lists .list {
    font-size: 1rem;
  }
}
.c-header .wrap .drawer .content .drawer__lists .list a:hover {
  color: #ff3e33;
  transition: 0.3s;
}
.c-header .wrap .drawer .content .drawer__lists .list__contact {
  padding: 1.8666666667vw 10.1333333333vw;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 10.6666666667vw;
  background-color: #ff3e33;
  color: #fff;
  transition: 0.3s;
}
.c-header .wrap .drawer .content .drawer__lists .list__contact:hover {
  background-color: #fff;
  color: #ff3e33;
}
.c-header .wrap .drawer .content .drawer__lists .list + .list {
  margin-top: 9.3333333333vw;
}
.c-header .wrap .drawer .content .drawer__lists .list + .list__contact {
  margin-top: 9.3333333333vw;
}
.c-header .wrap .drawer .content .drawer__lists .sns {
  display: flex;
  justify-content: space-around;
}
.c-header .wrap .drawer .content .drawer__lists .sns .sns__logo {
  width: 5.3333333333vw;
}
.c-header .wrap .drawer .content .drawer__lists .sns .sns__logo + .sns__logo {
  margin-left: 5.3333333333vw;
}

/* ------- ▼ c-hero ▼ ------- */
.c-hero {
  overflow: hidden;
}
.c-hero .contents {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-hero .contents {
    padding-top: 0;
  }
}
.c-hero .contents .lists {
  display: flex;
}
.c-hero .contents .lists .news__item {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-hero .contents .lists .news__item {
    width: calc((100% - 40px) / 3);
  }
}
.c-hero .contents .lists .news__item a {
  display: block;
  height: 100%;
  transition: 0.3s;
}
.c-hero .contents .lists .news__item a:hover {
  opacity: 0.5;
}
.c-hero .contents .lists .news__item a .pic img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* ------- ▼ c-news-single ▼ ------- */
.c-news-single .wrap {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-news-single .wrap .content .unit {
  display: flex;
  align-items: baseline;
}
.c-news-single .wrap .content .unit .date {
  color: #ff3e33;
  font-weight: lighter;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.c-news-single .wrap .content .unit .cate {
  margin-left: 4.5333333333vw;
  padding: 0.5333333333vw 4.8vw;
  border: 1px solid #2ec1a5;
  border-radius: 50px;
  background-color: #2ec1a5;
  color: #fff;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .content .unit .cate {
    margin-left: 1.5rem;
    padding: 0.3125rem 1.4375rem;
    font-size: 0.8125rem;
  }
}
.c-news-single .wrap .content .title {
  padding-top: 3.4666666667vw;
  font-weight: bold;
  font-size: 4.5333333333vw;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .content .title {
    padding-top: 1.125rem;
    font-size: 1.625rem;
  }
}
.c-news-single .wrap .content .post {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .content .post {
    padding-top: 3.125rem;
  }
}
.c-news-single .wrap .content .post figure img {
  width: 100%;
}
.c-news-single .wrap .content .post p {
  line-height: 2;
}
.c-news-single .wrap .content .post figure + p {
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .content .post figure + p {
    padding-top: 2.8125rem;
  }
}
.c-news-single .wrap .content .post p + figure {
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .content .post p + figure {
    padding-top: 2.8125rem;
  }
}
.c-news-single .wrap .pager {
  display: flex;
  justify-content: space-between;
  padding-top: 13.3333333333vw;
  color: #ff3e33;
  font-weight: 600;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .pager {
    max-width: 25.375rem;
    margin: 0 auto;
    padding-top: 4.6875rem;
  }
}
.c-news-single .wrap .pager .pager__button {
  display: flex;
  align-items: center;
}
.c-news-single .wrap .pager .pager__button:first-of-type .triangle {
  transform: rotate(225deg);
  margin-right: 0.5rem;
}
.c-news-single .wrap .pager .pager__button .triangle {
  display: inline-block;
  transform: rotate(45deg);
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  margin-left: 0.5rem;
  border: 2px solid #ff3e33;
  border-bottom: none;
  border-left: none;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .c-news-single .wrap .pager .pager__button .triangle {
    width: 0.625rem;
    height: 0.625rem;
  }
}

/* ------- ▼ c-news ▼ ------- */
.c-news {
  display: flex;
  flex-wrap: wrap;
  gap: 16vw 0;
}
@media screen and (min-width: 768px) {
  .c-news {
    gap: 6rem 2.5rem;
  }
}
.c-news .news__item {
  width: 100%;
  padding: 0 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-news .news__item {
    width: calc((100% - 40px * 2) / 3);
    padding: 0;
  }
}
.c-news .news__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 5.3333333333vw;
  border-bottom: 2px solid #ff3e33;
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a {
    padding-bottom: 1.5625rem;
    gap: 1.25rem;
  }
}
.c-news .news__item a:hover {
  opacity: 0.5;
}
.c-news .news__item a .pic img {
  display: block;
  width: 100%;
  height: 48vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .pic img {
    height: 14rem;
  }
}
.c-news .news__item a .unit {
  display: flex;
  align-items: center;
}
.c-news .news__item a .unit .date {
  color: #ff3e33;
  font-size: 3.4666666667vw;
  letter-spacing: 0.06em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .unit .date {
    font-size: 0.875rem;
  }
}
.c-news .news__item a .unit .cate {
  margin-left: 2.6666666667vw;
  padding: 0.5333333333vw 4.8vw;
  border: 1px solid #2ec1a5;
  border-radius: 50px;
  background-color: #2ec1a5;
  color: #fff;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .unit .cate {
    margin-left: 1.5rem;
    padding: 0.3125rem 1.4375rem;
    font-size: 0.8125rem;
  }
}
.c-news .news__item a .title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 3.4666666667vw;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .title {
    font-size: 1rem;
  }
}
.c-news .news__item a .button {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-right: 4vw;
  color: #ff3e33;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.12em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .button {
    padding-right: 0.9375rem;
  }
}
.c-news .news__item a .button .allow {
  display: block;
  position: relative;
  margin-left: 1.8666666667vw;
  padding: 0 0 0 16px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .button .allow {
    margin-left: 0.5625rem;
  }
}
.c-news .news__item a .button .allow::before, .c-news .news__item a .button .allow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
  content: "";
}
.c-news .news__item a .button .allow:before {
  left: 0;
  width: 30px;
  height: 2px;
  background: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-news .news__item a .button .allow:before {
    width: 1.875rem;
  }
}
.c-news .news__item a .button .allow:after {
  left: 22px;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff3e33;
  border-right: 2px solid #ff3e33;
  -webkit-transform: rotate(45deg);
}

_:lang(x) + _:-webkit-full-screen-document, .c-news {
  gap: 0;
}

@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .news__item {
    width: 29% !important;
    padding: 0;
  }
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .news__item:not(:nth-child(3n+3)) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .news__item:not(:nth-child(3n+3)) {
    margin-right: 6%;
  }
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .news__item:nth-child(n+2) {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .news__item:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .news__item:nth-child(n+4) {
    margin-top: 6rem;
  }
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .news__item a {
  gap: 0;
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .unit {
  padding-top: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .unit {
    padding-top: 1.375rem;
  }
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .title {
  padding-top: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .title {
    padding-top: 1.25rem;
  }
}

_:lang(x) + _:-webkit-full-screen-document, .c-news .button {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  _:lang(x) + _:-webkit-full-screen-document, .c-news .button {
    padding-top: 1.25rem;
  }
}

/* ------- ▼ c-page-header ▼ ------- */
.c-page-header {
  padding-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .c-page-header {
    padding-bottom: 5rem;
  }
}
.c-page-header .bg {
  background-image: linear-gradient(135deg, #ff3e33 7.14%, #fff 7.14%, #fff 50%, #ff3e33 50%, #ff3e33 57.14%, #fff 57.14%, #fff 100%);
  background-size: 9.9px 9.9px;
}
.c-page-header .bg .heading {
  position: relative;
  top: 10.1333333333vw;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-page-header .bg .heading {
    top: 4.0625rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.c-page-header .bg .heading .title--en {
  font-weight: 600;
  font-size: 8vw;
  letter-spacing: 0.05em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-page-header .bg .heading .title--en {
    font-size: 3.4375rem;
  }
}
.c-page-header .bg .heading .title {
  padding-top: 1.0666666667vw;
  font-weight: bold;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .c-page-header .bg .heading .title {
    padding-top: 0.75rem;
    font-size: 1.25rem;
  }
}

/* ------- ▼ c-up01 ▼ ------- */
.c-up01 {
  padding: 33.3333333333vw 0 21.3333333333vw;
  background-color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-up01 {
    padding: 12.5rem 0 12.1875rem;
  }
}
.c-up01 .wrap {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap {
    display: flex;
    justify-content: space-between;
    min-height: 15rem;
  }
}
.c-up01 .wrap .heading {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .heading {
    width: 20%;
    text-align: left;
  }
}
.c-up01 .wrap .heading .title--en {
  color: #fff;
  font-weight: 600;
  font-size: 8vw;
  letter-spacing: 0.06em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .heading .title--en {
    font-size: 3.125rem;
  }
}
.c-up01 .wrap .heading .title {
  padding-top: 2.1333333333vw;
  color: #fff;
  font-weight: bold;
  font-size: 3.4666666667vw;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .heading .title {
    padding-top: 1.0625rem;
    font-size: 1rem;
  }
}
.c-up01 .wrap .contents {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents {
    width: 75%;
    padding-top: 0;
  }
}
.c-up01 .wrap .contents .lists {
  display: flex;
}
.c-up01 .wrap .contents .lists .news__item {
  width: 100%;
  border-bottom: 2px solid #ff3e33;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item {
    width: calc((100% - 40px) / 3);
  }
}
.c-up01 .wrap .contents .lists .news__item a {
  display: block;
  height: 100%;
  transition: 0.3s;
}
.c-up01 .wrap .contents .lists .news__item a:hover {
  opacity: 0.5;
}
.c-up01 .wrap .contents .lists .news__item a .pic img {
  display: block;
  width: 100%;
  height: 38.6666666667vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .pic img {
    height: 14rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content {
  padding: 4vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content {
    padding: 1.1875rem 1.3125rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .unit {
  display: flex;
  align-items: center;
}
.c-up01 .wrap .contents .lists .news__item a .content .unit .date {
  color: #ff3e33;
  font-size: 3.4666666667vw;
  letter-spacing: 0.06em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .unit .date {
    font-size: 1.125rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .unit .cate {
  margin-left: 2.6666666667vw;
  padding: 0.5333333333vw 4.8vw;
  border: 1px solid #2ec1a5;
  border-radius: 50px;
  background-color: #2ec1a5;
  color: #fff;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .unit .cate {
    margin-left: 1.5rem;
    padding: 0.3125rem 1.4375rem;
    font-size: 0.8125rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .title {
  display: -webkit-box;
  padding-top: 2.1333333333vw;
  overflow: hidden;
  font-size: 3.4666666667vw;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.8333333333;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .title {
    padding-top: 1.25rem;
    font-size: 1rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .button {
  display: flex;
  justify-content: flex-end;
  padding-top: 2.1333333333vw;
  padding-right: 4vw;
  color: #ff3e33;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.12em;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .button {
    padding-top: 1.25rem;
    padding-right: 0.9375rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .button .allow {
  display: block;
  position: relative;
  margin-left: 1.8666666667vw;
  padding: 0 0 0 16px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .button .allow {
    margin-left: 0.5625rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .button .allow::before, .c-up01 .wrap .contents .lists .news__item a .content .button .allow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
  content: "";
}
.c-up01 .wrap .contents .lists .news__item a .content .button .allow:before {
  left: 0;
  width: 30px;
  height: 2px;
  background: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .contents .lists .news__item a .content .button .allow:before {
    width: 1.875rem;
  }
}
.c-up01 .wrap .contents .lists .news__item a .content .button .allow:after {
  left: 22px;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #ff3e33;
  border-right: 2px solid #ff3e33;
  -webkit-transform: rotate(45deg);
}
.c-up01 .wrap .c-button {
  max-width: 67.2vw;
  margin-top: 11.2vw;
  border-color: #fff !important;
  background-color: #fff !important;
  margin-right: auto;
  margin-left: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 50px;
  background-color: #ff3e33;
  transition: 0.3s;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.12em;
}
.c-up01 .wrap .c-button a {
  display: block;
  padding: 5.3333333333vw 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .c-button a {
    padding: 1.125rem 0;
  }
}
.c-up01 .wrap .c-button:hover {
  background-color: #fff;
}
.c-up01 .wrap .c-button:hover a {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-up01 .wrap .c-button {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 13.4375rem;
    margin-top: 0;
  }
}
.c-up01 .wrap .c-button a {
  color: #ff3e33;
}
.c-up01 .wrap .c-button:hover {
  background-color: #ff3e33 !important;
}
.c-up01 .wrap .c-button:hover a {
  color: #fff;
}

/* ------- ▼ c-up02 ▼ ------- */
.c-up02 {
  padding: 15.4666666667vw 0;
  background-image: linear-gradient(135deg, rgba(255, 62, 51, 0.4) 7.14%, #fff 7.14%, #fff 50%, rgba(255, 62, 51, 0.4) 50%, rgba(255, 62, 51, 0.4) 57.14%, #fff 57.14%, #fff 100%);
  background-size: 5px 5px;
}
@media screen and (min-width: 768px) {
  .c-up02 {
    padding: 5.9375rem 0;
  }
}
.c-up02 .wrap {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-up02 .wrap .heading .catch {
  color: #000;
  font-weight: 600;
  font-size: 4.2666666667vw;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .heading .catch {
    font-size: 1.625rem;
  }
}
.c-up02 .wrap .heading .title {
  padding-top: 4.8vw;
  color: #ff3e33;
  font-weight: 600;
  font-size: 8vw;
  text-align: center;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .heading .title {
    padding-top: 2.5rem;
    font-size: 3.4375rem;
  }
}
.c-up02 .wrap .heading .title .sub {
  color: #2ec1a5;
}
.c-up02 .wrap .items {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .items {
    padding-top: 3.75rem;
  }
}
.c-up02 .wrap .items .item {
  display: flex;
  align-items: center;
}
.c-up02 .wrap .items .item .pic img {
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .items .item .pic img {
    width: 100%;
    max-width: 7.625rem;
  }
}
.c-up02 .wrap .items .item .balloon {
  display: inline-block;
  position: relative;
  margin-left: 1.5em;
  padding: 8.8vw 4vw;
  border-radius: 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .items .item .balloon {
    width: 48.125rem;
    padding: 2.4375rem 2.875rem;
  }
}
.c-up02 .wrap .items .item .balloon:before {
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
  content: "";
}
.c-up02 .wrap .items .item .balloon .text {
  color: #000;
  font-size: 3.4666666667vw;
  letter-spacing: 0.01em;
  line-height: 2.3;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .items .item .balloon .text {
    font-size: 1.125rem;
    letter-spacing: 0.015em;
    line-height: 2.2666666667;
  }
}
.c-up02 .wrap .items .item + .item {
  padding-top: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .items .item + .item {
    padding-top: 3.75rem;
  }
}
.c-up02 .wrap .c-button {
  max-width: 67.2vw;
  margin-top: 11.2vw;
  margin-right: auto;
  margin-left: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 50px;
  background-color: #ff3e33;
  transition: 0.3s;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.12em;
}
.c-up02 .wrap .c-button a {
  display: block;
  padding: 5.3333333333vw 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .c-button a {
    padding: 1.125rem 0;
  }
}
.c-up02 .wrap .c-button:hover {
  background-color: #fff;
}
.c-up02 .wrap .c-button:hover a {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-up02 .wrap .c-button {
    max-width: 22.5rem;
    margin-top: 4.625rem;
  }
}

/* ------- ▼ c-voice ▼ ------- */
.c-voice .wrap {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-voice .wrap .items .item {
  display: flex;
  align-items: center;
}
.c-voice .wrap .items .item .pic img {
  width: 16vw;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .items .item .pic img {
    width: 100%;
    max-width: 7.625rem;
  }
}
.c-voice .wrap .items .item .balloon {
  display: inline-block;
  position: relative;
  margin-left: 1.5em;
  padding: 8.8vw 4vw;
  border-radius: 20px;
  background: rgba(255, 62, 51, 0.15);
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .items .item .balloon {
    width: 48.125rem;
    padding: 2.4375rem 2.875rem;
  }
}
.c-voice .wrap .items .item .balloon:before {
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid rgba(255, 62, 51, 0.15);
  content: "";
}
.c-voice .wrap .items .item .balloon .text {
  color: #000;
  font-size: 3.4666666667vw;
  letter-spacing: 0.01em;
  line-height: 2.3;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .items .item .balloon .text {
    font-size: 1.125rem;
    letter-spacing: 0.015em;
    line-height: 2.2666666667;
  }
}
.c-voice .wrap .items .item + .item {
  padding-top: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .items .item + .item {
    padding-top: 3.8125rem;
  }
}
.c-voice .wrap .c-button {
  max-width: 67.2vw;
  margin-top: 6.4vw;
  margin-right: auto;
  margin-left: auto;
  border-width: 2px;
  border-style: solid;
  border-color: #ff3e33;
  border-radius: 50px;
  background-color: #ff3e33;
  transition: 0.3s;
  font-family: "Montserrat", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.12em;
}
.c-voice .wrap .c-button a {
  display: block;
  padding: 5.3333333333vw 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .c-button a {
    padding: 1.125rem 0;
  }
}
.c-voice .wrap .c-button:hover {
  background-color: #fff;
}
.c-voice .wrap .c-button:hover a {
  color: #ff3e33;
}
@media screen and (min-width: 768px) {
  .c-voice .wrap .c-button {
    max-width: 22.5rem;
    margin-top: 3.125rem;
  }
}

/* ===============================
3_js
=============================== */
/* ------- ▼ js-c-swiper ▼ ------- */
.swiper-button-prev, .swiper-button-next {
  width: 9.3333333333vw;
  max-width: 3.125rem;
  height: 9.3333333333vw;
  max-height: 3.125rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: block;
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  margin: auto;
  border: 2px solid #fff;
  border-top: solid 0 #fff;
  border-right: solid 0 #fff;
  content: "";
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background-color: #000;
}
.swiper-button-prev:hover::after, .swiper-button-next:hover::after {
  border: 2px solid #fff;
  border-top: solid 0 #000;
  border-right: solid 0 #000;
  transition: 0.3s;
}

.swiper-button-prev:after {
  left: 2px;
  transform: rotate(45deg);
}

.swiper-button-next:after {
  right: 2px;
  transform: rotate(225deg);
}

.c-hero .hero-container {
  position: relative;
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  overflow: visible;
}
.c-hero .swiper-button-prev, .c-hero .swiper-button-next {
  top: 32vw;
}
@media screen and (min-width: 768px) {
  .c-hero .swiper-button-prev, .c-hero .swiper-button-next {
    top: 45%;
  }
}
.c-hero .swiper-button-prev {
  left: 4vw;
}
@media screen and (min-width: 768px) {
  .c-hero .swiper-button-prev {
    left: 14%;
  }
}
.c-hero .swiper-button-next {
  right: 4vw;
}
@media screen and (min-width: 768px) {
  .c-hero .swiper-button-next {
    right: 14%;
  }
}
.c-hero .swiper-pagination {
  position: relative;
  bottom: 0;
  padding-top: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .c-hero .swiper-pagination {
    padding-top: 1.875rem;
  }
}

.c-up01 .swiper-button-prev, .c-up01 .swiper-button-next {
  top: 50%;
}
.c-up01 .swiper-button-prev {
  left: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .swiper-button-prev {
    left: 1%;
  }
}
.c-up01 .swiper-button-next {
  right: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-up01 .swiper-button-next {
    right: 1%;
  }
}
.c-up01 .swiper-container {
  margin-right: 0;
  margin-left: 0;
}

.index .c-hero {
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .index .c-hero {
    margin-top: 6.75rem;
  }
}
.index .c-hero + .c-up01 {
  margin-top: -24vw;
}
@media screen and (min-width: 768px) {
  .index .c-hero + .c-up01 {
    margin-top: -8rem;
  }
}
.index .c-media .pic img {
  width: 100%;
}

.c-page-header {
  margin-top: 20.8vw;
}
@media screen and (min-width: 768px) {
  .c-page-header {
    margin-top: 6.75rem;
  }
}

.concept .c-page-header + .c-feature2 {
  padding-top: 10.4vw;
}
@media screen and (min-width: 768px) {
  .concept .c-page-header + .c-feature2 {
    padding-top: 4.8125rem;
  }
}
.concept .c-feature2 + .c-feature3 {
  padding-top: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .concept .c-feature2 + .c-feature3 {
    padding-top: 8.75rem;
  }
}

.faq .c-page-header + .c-accordion {
  padding-top: 9.6vw;
}
@media screen and (min-width: 768px) {
  .faq .c-page-header + .c-accordion {
    padding-top: 5rem;
  }
}

.news .c-category {
  padding-top: 10.4vw;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .news .c-category {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news .c-category {
    padding-top: 4.375rem;
  }
}
.news .c-news {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .news .c-news {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.news .c-category + .c-news {
  padding-top: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .news .c-category + .c-news {
    padding-top: 4.25rem;
  }
}

.news-single .c-page-header + .c-news-single {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news-single .c-page-header + .c-news-single {
    padding-top: 5rem;
  }
}

.voice .c-page-header + .c-voice {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .voice .c-page-header + .c-voice {
    padding-top: 4.8125rem;
  }
}

.contact .texts {
  padding: 0 5.3333333333vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact .texts {
    padding: 0 1.25rem;
    text-align: center;
  }
}
.contact .c-form {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .contact .c-form {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.contact .c-page-header + .texts {
  padding-top: 9.6vw;
}
@media screen and (min-width: 768px) {
  .contact .c-page-header + .texts {
    padding-top: 4.9375rem;
  }
}
.contact .texts + .c-form {
  padding-top: 9.6vw;
}
@media screen and (min-width: 768px) {
  .contact .texts + .c-form {
    padding-top: 3.875rem;
  }
}