@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #262626;
  line-height: 1.5;
  font-weight: 500;
}

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

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

button {
  padding: 0;
}

/* l-btn */
.l-btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-btn {
    margin-top: 2.5rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* l-section */
.l-section {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 2.5rem 0;
  }
}

/* address */
.address {
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .address {
    font-size: 0.9375rem;
    padding: 1.875rem 1.25rem;
  }
}

.address__title {
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}

.address__text {
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

/* anchor */
.anchor__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .anchor__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.anchor__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(16.666% - 0.625rem);
          flex: 0 1 calc(16.666% - 0.625rem);
  text-align: center;
  border-radius: 0.625rem;
  border: 2px solid #B3B3B3;
  border: 0.125rem solid #B3B3B3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .anchor__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.25rem);
            flex: 0 1 calc(50% - 0.25rem);
  }
}
.anchor__item > a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .anchor__item > a {
    font-size: 1rem;
    padding: 0.625rem;
  }
}
.anchor__item.current {
  background: #09A7EE;
  border-color: #09A7EE;
}
.anchor__item.current a {
  color: #fff;
  pointer-events: none;
}
.anchor__item > span {
  position: absolute;
  top: 15px;
  top: 0.9375rem;
  right: 10px;
  right: 0.625rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(../img/common/anchor-icon01.png) no-repeat center/16px;
  background: url(../img/common/anchor-icon01.png) no-repeat center/1rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .anchor__item > span {
    top: 0.375rem;
  }
}
.anchor__item > span.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.anchor__subitems {
  display: none;
  padding: 0 20px 20px;
  padding: 0 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .anchor__subitems {
    padding: 0 0.9375rem 0.9375rem;
  }
}

.anchor__subitem + .anchor__subitem {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.anchor__subitem a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #F7F7F7;
  border-radius: 0.25rem;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .anchor__subitem a {
    font-size: 1rem;
  }
}

/* banner */
.banner {
  border-radius: 0.625rem;
  background: #E8F6F8;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .banner {
    padding: 1.875rem 1.25rem;
  }
}

.banner__title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 1.125rem;
  }
}

.banner__img {
  display: block;
  width: 670px;
  width: 41.875rem;
  max-width: 100%;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .banner__img {
    margin-top: 1.25rem;
  }
}

/* bg */
.bg {
  background: #FBFCE6;
  margin: 120px 0;
  margin: 7.5rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bg {
    margin: 5rem 0;
  }
}
.bg::before, .bg::after {
  position: absolute;
  content: "";
  height: 180px;
  height: 11.25rem;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/common/bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg::before, .bg::after {
    height: 6.25rem;
  }
}
.bg::before {
  top: -65px;
  top: -4.0625rem;
}
.bg::after {
  bottom: -65px;
  bottom: -4.0625rem;
}

/* book */
.book__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .book__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem 1.25rem;
  }
}

.book__item-img img {
  border-radius: 0.625rem;
}

.book__item-title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .book__item-title {
    font-size: 1rem;
    margin-top: 0.3125rem;
  }
}

/* border */
.border {
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: #B3B3B3;
  margin: 60px 0;
  margin: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .border {
    margin: 2.5rem 0;
  }
}

/* box */
.box {
  background: #fff;
  border-radius: 0.625rem;
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 1.875rem 1.25rem;
  }
}

.box__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .box__title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.box__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .box__text {
    font-size: 0.9375rem;
  }
}
.box__text + .box__text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .box__text + .box__text {
    margin-top: 0.625rem;
  }
}
.box__text a {
  display: inline-block;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/30px;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .box__text a {
    background: url(../img/common/arrow-icon03.png) no-repeat left top 0.125rem/1.4375rem;
    padding-left: 1.875rem;
  }
}

.box__heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .box__heading {
    font-size: 1.125rem;
    padding-bottom: 0.9375rem;
  }
}

.box__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .box__list-item {
    display: block;
  }
}
.box__list-item + .box__list-item {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding-top: 20px;
  padding-top: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.box__list-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 160px;
  min-width: 10rem;
}
@media screen and (max-width: 767px) {
  .box__list-title {
    font-size: 0.9375rem;
    min-width: unset;
  }
}

.box__list-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .box__list-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.box__sublist {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .box__sublist {
    margin-top: 0.9375rem;
  }
}

.box__sublist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .box__sublist-item {
    font-size: 0.9375rem;
  }
}

.box__sublist-title {
  min-width: 108px;
  min-width: 6.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .box__sublist-title {
    min-width: 5.625rem;
  }
}

.box__sublist-text {
  letter-spacing: 0.08em;
}

.box__link {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .box__link {
    font-size: 0.9375rem;
  }
}
.box__link + .box__link {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .box__link + .box__link {
    margin-top: 0.625rem;
  }
}
.box__link a {
  display: inline-block;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/30px;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .box__link a {
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.box__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box__units {
    grid-template-columns: repeat(1, 1fr);
  }
}

.box__unit {
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 50px 50px;
  padding: 3.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .box__unit {
    padding: 1.875rem 1.25rem;
  }
}

.box__unit-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .box__unit-title {
    font-size: 1.125rem;
  }
}

.box__unit-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .box__unit-text {
    font-size: 0.9375rem;
  }
}
.box__unit-text + .box__unit-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.box__unit-text a {
  display: inline-block;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/30px;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .box__unit-text a {
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.box__unit-links {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .box__unit-links {
    margin-top: 1.25rem;
  }
}

.box__unit-link {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .box__unit-link {
    font-size: 1rem;
  }
}
.box__unit-link + .box__unit-link {
  margin-top: 10px;
  margin-top: 0.625rem;
}
.box__unit-link a {
  display: inline-block;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/30px;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .box__unit-link a {
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

/* boxes */
.boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

/* breadcrumb */
.breadcrumb {
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.625rem 0;
  }
}

.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 20px;
  margin-left: 1.25rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  top: 2px;
  top: 0.125rem;
  left: -16px;
  left: -1rem;
  background: url(../img/common/arrow-icon04.png) no-repeat center/contain;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
    font-size: 0.875rem;
  }
}

/* btn */
.btn {
  text-align: center;
  display: block;
  width: 420px;
  width: 26.25rem;
  max-width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 0.625rem;
  background: #09A7EE;
  padding: 22px 0;
  padding: 1.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 20.9375rem;
    font-size: 1rem;
    border-radius: 0.3125rem;
    padding: 0.8125rem 0;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/arrow-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
  }
}
.btn[target=_blank]::after {
  background: url(../img/common/link-icon.png) no-repeat center/contain;
}

.btn--left {
  margin-right: auto;
}
.btn--left::after {
  right: unset;
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/back-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .btn--left::after {
    left: 1rem;
  }
}

.btn--center {
  margin: 0 auto;
}

.btn--right {
  margin-left: auto;
}

.btn--small {
  width: 320px;
  width: 20rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .btn--small {
    width: 17.1875rem;
    font-size: 1rem;
    padding: 0.8125rem 0;
  }
}
.btn--small::after {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .btn--small::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* btns */
.btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .btns {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}
.btns .btn {
  width: auto;
  width: 100%;
}

/* card */
.card {
  border-radius: 0.625rem;
  background: #fff;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
}

.card__inner {
  display: block;
}

.card__img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.card__body {
  padding: 20px 30px 25px;
  padding: 1.25rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 1.25rem;
  }
}

.card__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.125rem;
  }
}

.card__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 0.9375rem;
  }
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  gap: 2.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

/* case */
.case {
  background: #E8F6F8;
  border-radius: 0.625rem;
  padding: 60px 60px;
  padding: 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 1.875rem 1.25rem;
  }
}

.case__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .case__inner {
    display: block;
  }
}

.case__img {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .case__img {
    width: 100%;
  }
}
.case__img img {
  border-radius: 0.625rem;
}

.case__body {
  width: 71%;
}
@media screen and (max-width: 767px) {
  .case__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.case__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .case__title {
    font-size: 1.125rem;
  }
}

.case__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .case__text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

/* category */
.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 10px;
  gap: 0 0.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 0.3125rem;
    margin-top: 1.25rem;
  }
}
.category button {
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #262626;
  width: 168px;
  width: 10.5rem;
  max-width: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
  border: 2px solid #B3B3B3;
  border: 0.125rem solid #B3B3B3;
  border-bottom: none;
  padding: 9px 0;
  padding: 0.5625rem 0;
}
@media screen and (max-width: 767px) {
  .category button {
    width: auto;
    font-size: 0.875rem;
    border-radius: 0.3125rem 0.3125rem 0 0;
    padding: 0.4375rem 0;
  }
}
.category button.current {
  pointer-events: none;
  color: #fff;
  background: #09A7EE;
  border-color: #09A7EE;
  letter-spacing: 0.08em;
}

/* check */
.check__item {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.64;
  background: url(../img/common/check-icon.png) no-repeat top 2px left/40px;
  background: url(../img/common/check-icon.png) no-repeat top 0.125rem left/2.5rem;
  padding: 3px 0 3px 52px;
  padding: 0.1875rem 0 0.1875rem 3.25rem;
}
@media screen and (max-width: 767px) {
  .check__item {
    font-size: 0.9375rem;
    background-size: 1.5625rem;
    padding-left: 2.1875rem;
  }
}
.check__item + .check__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .check__item + .check__item {
    margin-top: 0.625rem;
  }
}

/* classroom */
.classroom {
  border-radius: 0.625rem;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
}
.classroom:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .classroom:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.classroom__header {
  min-height: 330px;
  min-height: 20.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 30px 30px 60px;
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .classroom__header {
    min-height: unset;
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.classroom__body {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .classroom__body {
    width: 100%;
  }
}

.classroom__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .classroom__title {
    font-size: 1.25rem;
  }
}

.classroom__address {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  background: url(../img/common/map-icon.png) no-repeat top 2px left/24px;
  background: url(../img/common/map-icon.png) no-repeat top 0.125rem left/1.5rem;
  padding-left: 32px;
  padding-left: 2rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .classroom__address {
    font-size: 0.9375rem;
    background: url(../img/common/map-icon.png) no-repeat top 0.125rem left/1.25rem;
    padding-left: 1.5625rem;
  }
}

.classroom__time {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  background: url(../img/common/time-icon.png) no-repeat top 2px left/24px;
  background: url(../img/common/time-icon.png) no-repeat top 0.125rem left/1.5rem;
  padding-left: 32px;
  padding-left: 2rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .classroom__time {
    font-size: 0.9375rem;
    background: url(../img/common/time-icon.png) no-repeat top 0.125rem left/1.25rem;
    padding-left: 1.5625rem;
  }
}

.classroom__btn {
  width: 320px;
  width: 20rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .classroom__btn {
    font-size: 1rem;
    margin: 1.25rem auto 0;
  }
}
.classroom__btn::after {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: url(../img/common/dropdown-icon01.png) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .classroom__btn::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.classroom__btn.active::after {
  background: url(../img/common/dropdown-icon02.png) no-repeat center/contain;
}

.classroom__slider-wrapper {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .classroom__slider-wrapper {
    width: 100%;
    margin-top: 1.875rem;
  }
}

.classroom__slider {
  display: none;
}
.classroom__slider.slick-initialized {
  display: block;
}
.classroom__slider img {
  border-radius: 0.625rem;
}

.classroom__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .classroom__nav {
    gap: 0.9375rem;
  }
}
.classroom__nav .classroom__arrow {
  display: block;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
.classroom__nav .classroom__arrow:hover {
  opacity: 1;
}
.classroom__nav .classroom__prev {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}
.classroom__nav .classroom__next {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}
.classroom__nav .classroom__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.classroom__nav .classroom__dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .classroom__nav .classroom__dots ul {
    gap: 0.9375rem;
  }
}
.classroom__nav .classroom__dots li {
  display: inline-block;
  background: #E4F0F8;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .classroom__nav .classroom__dots li {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.classroom__nav .classroom__dots li button {
  text-indent: -9999px;
}
.classroom__nav .classroom__dots li.slick-active {
  background: #51C7DD;
}

.classroom__img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .classroom__img {
    width: 100%;
    margin-top: 1.875rem;
  }
}
.classroom__img img {
  border-radius: 0.625rem;
}

.classroom__footer {
  display: none;
}

.classroom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F7F7F7;
  border-radius: 0 0 0.5625rem 0.5625rem;
  padding: 30px 30px 30px 70px;
  padding: 1.875rem 1.875rem 1.875rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .classroom__inner {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.classroom__list {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .classroom__list {
    width: 100%;
  }
}

.classroom__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .classroom__list-item {
    font-size: 0.9375rem;
  }
}
.classroom__list-item + .classroom__list-item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .classroom__list-item + .classroom__list-item {
    margin-top: 0.9375rem;
  }
}

.classroom__list-title {
  min-width: 106px;
  min-width: 6.625rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .classroom__list-title {
    min-width: 5rem;
  }
}

.classroom__list-text {
  letter-spacing: 0.08em;
}

.classroom__map-wrapper {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .classroom__map-wrapper {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.classroom__map {
  width: 100%;
  padding-top: 83.3333333333%;
  position: relative;
}
.classroom__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* column */
.column__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .column__inner {
    display: block;
  }
}
.column__inner:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.column__inner + .column__inner {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .column__inner + .column__inner {
    margin-top: 1.875rem;
  }
}

.column__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .column__img {
    width: 100%;
  }
}
.column__img img {
  border-radius: 0.625rem;
}

.column__body {
  width: 50%;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .column__body {
    width: 100%;
    padding-top: 0;
    margin-top: 1.25rem;
  }
}

.column__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.81;
}
@media screen and (max-width: 767px) {
  .column__text {
    font-size: 0.9375rem;
  }
}

/* drawer */
.drawer {
  display: none;
  padding: 50px 5px 5px;
  padding: 3.125rem 0.3125rem 0.3125rem;
}

.drawer__item {
  text-align: center;
}
.drawer__item + .drawer__item {
  margin-top: 39px;
  margin-top: 2.4375rem;
}
.drawer__item a {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.drawer__link-wrapper {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.drawer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.3125rem;
}
.drawer__links:first-child {
  background: #FBFCE6;
  padding: 8px 5px;
  padding: 0.5rem 0.3125rem;
}
.drawer__links:first-child .drawer__link:not(:first-child) {
  padding-left: 32px;
  padding-left: 2rem;
  margin-left: 32px;
  margin-left: 2rem;
}
.drawer__links:first-child .drawer__link:not(:first-child)::before {
  background: #DDC87E;
}
.drawer__links:nth-child(2) {
  background: #F0F0F2;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 10px 5px;
  padding: 0.625rem 0.3125rem;
}
.drawer__links:nth-child(2) .drawer__link {
  font-size: 14px;
  font-size: 0.875rem;
}
.drawer__links:nth-child(2) .drawer__link:not(:first-child) {
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.drawer__links:nth-child(2) .drawer__link:not(:first-child)::before {
  background: #A6A6A6;
}

.drawer__link + .drawer__link {
  position: relative;
}
.drawer__link + .drawer__link::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer__link a {
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

/* entitle */
/* example */
.example {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .example {
    font-size: 0.9375rem;
    padding: 1.5625rem 1.25rem;
  }
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: block;
    border-bottom: 0.0625rem solid #BEC4C7;
  }
}

@media screen and (max-width: 767px) {
  .fnav__item {
    border-top: 0.0625rem solid #BEC4C7;
    padding: 1.5625rem 1.25rem;
  }
}

.fnav__subtitle button {
  text-align: left;
  display: block;
  width: 100%;
  cursor: unset;
  font-size: 24px;
  font-size: 1.5rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .fnav__subtitle button {
    font-size: 1.125rem;
    background: url(../img/common/dropdown-icon01.png) no-repeat center right/1.5rem;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
}
.fnav__subtitle button:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .fnav__subtitle.active button {
    background: url(../img/common/dropdown-icon02.png) no-repeat center right/1.5rem;
  }
}

.fnav__links {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .fnav__links {
    display: none;
    margin-top: 0.625rem;
  }
}

.fnav__link a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .fnav__link a {
    font-size: 0.9375rem;
    line-height: 2.27;
  }
}

/* footer */
.footer {
  margin-top: 120px;
  margin-top: 7.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 5rem;
  }
}
.footer::after {
  position: absolute;
  content: "";
  width: 185px;
  width: 11.5625rem;
  height: 244px;
  height: 15.25rem;
  top: -140px;
  top: -8.75rem;
  right: 100px;
  right: 6.25rem;
  background: url(../img/common/footer-icon.png) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer::after {
    width: 4.8125rem;
    height: 6.375rem;
    top: -2.8125rem;
    right: 1.25rem;
  }
}

.footer__content {
  padding: 135px 0 40px;
  padding: 8.4375rem 0 2.5rem;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 5.625rem 0 1.875rem;
  }
}
.footer__content::before, .footer__content::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.footer__content::before {
  height: 178px;
  height: 11.125rem;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: url(../img/common/bg02.png) no-repeat center/contain;
}
@media screen and (min-width: 1600px) {
  .footer__content::before {
    height: 21.875rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__content::before {
    height: 5rem;
  }
}
.footer__content::after {
  background: #E4F0F8;
  left: 0;
  width: 100%;
  bottom: 0;
  top: 100px;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .footer__content::after {
    top: 1.875rem;
  }
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 0 30px;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__box {
    display: block;
    margin-top: 1.875rem;
    padding: 1.5625rem 0;
  }
}

.footer__logo {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 17.8125rem;
    margin: 0 auto;
  }
}

.footer__text {
  min-height: 120px;
  min-height: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  line-height: 1.72;
  border-left: 1px solid #BEC4C7;
  border-left: 0.0625rem solid #BEC4C7;
  margin-left: 30px;
  margin-left: 1.875rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
    line-height: 1.57;
    border-left: none;
    border-top: 0.0625rem solid #BEC4C7;
    margin-left: 0;
    margin-top: 1.5625rem;
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.08em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    font-size: 0.75rem;
    margin-top: 1.5625rem;
  }
}

/* form */
.form {
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  border-radius: 0.625rem;
  padding: 60px 50px 50px;
  padding: 3.75rem 3.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .form {
    padding: 2.5rem 1.25rem;
  }
}

.form__items {
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding: 30px 0;
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .form__item {
    display: block;
    padding: 1.25rem 0;
  }
}

.form__item-label {
  width: 23.5%;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__item-label label {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form__item-label label {
    font-size: 1.125rem;
  }
}
.form__item-label span {
  display: inline-block;
  color: #DE030F;
  margin-left: 7px;
  margin-left: 0.4375rem;
}

.form__item-input {
  width: 76.5%;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form__item-input {
    width: 100%;
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select, .form__item-input textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #939899;
  border: 0.0625rem solid #939899;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select, .form__item-input textarea {
    padding: 0.9375rem 0.9375rem;
  }
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input select::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input select::placeholder, .form__item-input textarea::placeholder {
  color: #B3B3B3;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select {
  height: 60px;
  height: 3.75rem;
}
.form__item-input textarea {
  height: 160px;
  height: 10rem;
  resize: none;
}
.form__item-input select {
  width: 400px;
  width: 25rem;
  max-width: 100%;
  color: #262626;
  background: url(../img/common/select-icon.png) no-repeat center right 25px/16px;
  background: url(../img/common/select-icon.png) no-repeat center right 1.5625rem/1rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}

.form__address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .form__address-item {
    display: block;
  }
}
.form__address-item + .form__address-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__address-item + .form__address-item {
    margin-top: 0.9375rem;
  }
}

.form__address-item-label {
  width: 20.5%;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .form__address-item-label {
    width: 100%;
    padding-top: 0;
  }
}
.form__address-item-label label {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form__address-item-label label {
    font-size: 1rem;
  }
}

.form__address-item-input {
  width: 79.5%;
}
@media screen and (max-width: 767px) {
  .form__address-item-input {
    width: 100%;
    margin-top: 0.3125rem;
  }
}

.form__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}
.form__post input[type=text] {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .form__post input[type=text] {
    width: 11.25rem;
  }
}
.form__post button {
  text-align: center;
  display: block;
  width: 120px;
  width: 7.5rem;
  max-width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: #09A7EE;
  border-radius: 0.625rem;
  padding: 12px;
  padding: 0.75rem;
}
@media screen and (max-width: 767px) {
  .form__post button {
    width: 5.625rem;
    font-size: 1rem;
  }
}
.form__post button:hover {
  opacity: 1;
}

.form__text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}

.form__privacy {
  background: #E8F6F8;
  border-radius: 0.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    padding: 1.5625rem 1.25rem;
  }
}

.form__privacy-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .form__privacy-title {
    font-size: 1rem;
  }
}

.form__privacy-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-text {
    font-size: 1rem;
  }
}

.form__privacy-check {
  margin-top: 22px;
  margin-top: 1.375rem;
}
.form__privacy-check input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 45px;
  padding-left: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__privacy-check input[type=checkbox] + span {
    font-size: 1.125rem;
    line-height: 1.3;
    padding-left: 2.1875rem;
  }
}
.form__privacy-check input[type=checkbox] + span::before, .form__privacy-check input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  display: block;
}
.form__privacy-check input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #939899;
  border: 0.0625rem solid #939899;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-check input[type=checkbox] + span::before {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.form__privacy-check input[type=checkbox] + span::after {
  border-bottom: 3px solid #262626;
  border-bottom: 0.1875rem solid #262626;
  border-left: 3px solid #262626;
  border-left: 0.1875rem solid #262626;
  height: 12px;
  height: 0.75rem;
  width: 20px;
  width: 1.25rem;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 5px;
  left: 0.3125rem;
  top: 10px;
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-check input[type=checkbox] + span::after {
    height: 0.625rem;
    width: 1rem;
    top: 1rem;
  }
}
.form__privacy-check input[type=checkbox] + span span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  color: #DE030F;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-check input[type=checkbox] + span span {
    font-size: 1rem;
  }
}
.form__privacy-check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.form__btn {
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}

/* gnav */
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 38px;
  gap: 0 2.375rem;
}

.gnav__item a {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* hamburger */
.hamburger {
  position: absolute;
  z-index: 30;
  right: 10px;
  right: 0.625rem;
  top: 15px;
  top: 0.9375rem;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  cursor: pointer;
}
.hamburger.active .hamburger__border {
  top: 5px;
  top: 0.3125rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.active .hamburger__border:nth-child(3) {
  display: none;
}

.hamburger__border {
  display: block;
  position: absolute;
  height: 1.5px;
  height: 0.09375rem;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  width: 17px;
  width: 1.0625rem;
  top: 0;
}
.hamburger__border:nth-child(2) {
  width: 17px;
  width: 1.0625rem;
  top: 5px;
  top: 0.3125rem;
}
.hamburger__border:nth-child(3) {
  width: 13px;
  width: 0.8125rem;
  top: 10px;
  top: 0.625rem;
}

/* header */
.header {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10px;
  top: 0.625rem;
  z-index: 100;
  width: 98.5%;
  background: #fff;
  border-radius: 0.625rem;
  padding: 10px 10px 15px 30px;
  padding: 0.625rem 0.625rem 0.9375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .header {
    width: 97.5%;
    top: 0.3125rem;
    border-radius: 0.3125rem;
    padding: 0.5rem 0.625rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.header__logo {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 10.6875rem;
  }
}
.header__logo a {
  display: block;
}

.header__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 10px;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .header__link-wrapper {
    display: none;
  }
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.3125rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}
.header__links:first-child {
  background: #FBFCE6;
}
.header__links:first-child .header__link:not(:first-child)::before {
  background: #DDC87E;
}
.header__links:nth-child(2) {
  background: #F0F0F2;
}
.header__links:nth-child(2) .header__link:not(:first-child)::before {
  background: #A6A6A6;
}

.header__link + .header__link {
  padding-left: 19px;
  padding-left: 1.1875rem;
  margin-left: 19px;
  margin-left: 1.1875rem;
  position: relative;
}
.header__link + .header__link::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 20px;
  height: 1.25rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__link a {
  display: inline-block;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.header__nav {
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

/* history */
.history {
  background: #fff;
  border-radius: 0.625rem;
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  padding: 75px 50px;
  padding: 4.6875rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .history {
    padding: 1.875rem 1.25rem;
  }
}

.history__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .history__list-item {
    display: block;
  }
}
.history__list-item + .history__list-item {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.history__list-title {
  min-width: 160px;
  min-width: 10rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .history__list-title {
    min-width: unset;
    font-size: 0.9375rem;
  }
}

.history__list-body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .history__list-body {
    display: block;
    margin-top: 0.625rem;
  }
}

.history__list-text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .history__list-text {
    font-size: 0.9375rem;
  }
}
.history__list-text a {
  text-decoration: underline;
  color: #09A7EE;
}

.history__list-img {
  width: 150px;
  width: 9.375rem;
  min-width: 150px;
  min-width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .history__list-img {
    margin: 1.25rem auto 0;
  }
}

/* img-wrapper */
.img-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .img-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.img-wrapper img {
  border-radius: 0.625rem;
}

/* info */
.info {
  background: #fff;
  border-radius: 0.625rem;
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  padding: 40px 50px;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 1.875rem 1.25rem;
  }
}

.info__item + .info__item {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .info__item + .info__item {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.info__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info__item-inner {
    display: block;
    padding-right: 2.5rem;
  }
}
.info__item-inner::after {
  position: absolute;
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .info__item-inner::after {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.info__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .info__item-header {
    gap: 0.9375rem;
  }
}

.info__item-category {
  min-width: 126px;
  min-width: 7.875rem;
}
@media screen and (max-width: 767px) {
  .info__item-category {
    min-width: unset;
  }
}
.info__item-category span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .info__item-category span {
    font-size: 0.9375rem;
  }
}
.info__item-category span.blue {
  color: #09A7EE;
}
.info__item-category span.green {
  color: #8AC45E;
}
.info__item-category span.orange {
  color: #D8881D;
}

.info__item-date {
  display: inline-block;
  min-width: 132px;
  min-width: 8.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #868686;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .info__item-date {
    font-size: 0.9375rem;
    min-width: unset;
  }
}

.info__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .info__item-title {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

/* lead */
.lead {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    font-size: 1rem;
  }
}

/* list */
.list {
  border-radius: 0.625rem;
  border: 1px solid #51C7DD;
  border: 0.0625rem solid #51C7DD;
}

.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .list__item {
    display: block;
  }
}
.list__item + .list__item {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .list__item + .list__item {
    border-top: none;
  }
}
.list__item:first-child .list__item-title {
  border-radius: 0.625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .list__item:first-child .list__item-title {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.list__item:last-child .list__item-title {
  border-radius: 0 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .list__item:last-child .list__item-title {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .list__item:last-child .list__item-body {
    border-radius: 0 0 0.625rem 0.625rem;
  }
}

.list__item-title {
  width: 18%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #E8F6F8;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .list__item-title {
    width: 100%;
    font-size: 0.9375rem;
    padding: 1.25rem 1.25rem;
  }
}

.list__item-body {
  width: 82%;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  background: #fff;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .list__item-body {
    width: 100%;
    font-size: 0.9375rem;
    padding: 1.25rem 1.25rem;
  }
}

.list__item-text:not(:last-child) {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.list__item-link {
  display: inline-block;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/30px;
  background: url(../img/common/arrow-icon03.png) no-repeat left top/1.875rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .list__item-link {
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.list__item-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list__item-list-item + .list__item-list-item {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .list__item-list-item + .list__item-list-item {
    margin-top: 0.625rem;
  }
}

.list__item-list-title {
  font-weight: 700;
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .list__item-list-title {
    min-width: 5.625rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* map */
.map {
  width: 100%;
  padding-top: 40%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .map {
    padding-top: 100%;
  }
}
.map img, .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* margin */
.mt80 {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mt80 {
    margin-top: 2.5rem;
  }
}

.mt60 {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mt60 {
    margin-top: 1.875rem;
  }
}

.mt40 {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 1.25rem;
  }
}

.mt20 {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mt20 {
    margin-top: 0.625rem;
  }
}

.mb80 {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 2.5rem;
  }
}

.mb60 {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 1.875rem;
  }
}

.mb40 {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 1.25rem;
  }
}

.mb20 {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mb20 {
    margin-bottom: 0.625rem;
  }
}

/* menu */
.menu {
  padding: 60px 0 20px;
  padding: 3.75rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .menu {
    padding-top: 2.5rem;
  }
}

.menu__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .menu__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.menu__items--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .menu__items--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__items--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .menu__items--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__items--2 {
  grid-template-columns: repeat(2, 1fr);
}

.menu__item.current a {
  color: #fff;
  background: #09A7EE;
  border-color: #09A7EE;
  pointer-events: none;
}
.menu__item a {
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: #fff;
  border-radius: 0.625rem;
  border: 2px solid #B3B3B3;
  border: 0.125rem solid #B3B3B3;
  padding: 13px;
  padding: 0.8125rem;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
@media screen and (max-width: 767px) {
  .menu__item a {
    font-size: 0.9375rem;
  }
}
.menu__item a:hover {
  color: #fff;
  background: #09A7EE;
  border-color: #09A7EE;
}

/* mv */
.mv {
  min-height: 340px;
  min-height: 21.25rem;
  background: #6CC8EA;
  padding: 155px 0 40px;
  padding: 9.6875rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: unset;
    padding: 6.25rem 0 3.125rem;
  }
  .mv .l-inner {
    padding: 0 0.625rem;
  }
}

.mv__title {
  min-height: 140px;
  min-height: 8.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .mv__title {
    min-height: unset;
    font-size: 1.625rem;
  }
}

/* news */
.news {
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  border-radius: 0.625rem 0 0.625rem 0.625rem;
  background: #fff;
  padding: 17px 50px;
  padding: 1.0625rem 3.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .news {
    border-radius: 0 0 0.3125rem 0.3125rem;
    padding: 0;
  }
}

.news__content {
  display: none;
}
.news__content.active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news__item + .news__item {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 0;
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    display: block;
    padding: 0.875rem 1rem;
  }
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__item-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 0.625rem;
  }
}

.news__item-category span {
  display: inline-block;
  min-width: 126px;
  min-width: 7.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .news__item-category span {
    font-size: 0.875rem;
    min-width: unset;
  }
}
.news__item-category span.blue {
  color: #09A7EE;
}
.news__item-category span.green {
  color: #80B933;
}
.news__item-category span.orange {
  color: #D8881D;
}

.news__item-date {
  display: inline-block;
  min-width: 132px;
  min-width: 8.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 0.875rem;
    min-width: unset;
  }
}

.news__item-title {
  width: 100%;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/40px;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/2.5rem;
  padding: 5px 50px 5px 0;
  padding: 0.3125rem 3.125rem 0.3125rem 0;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 0.875rem;
    line-height: 1.43;
    background-size: 1.5rem;
    padding: 0.3125rem 2.5rem 0.3125rem 0;
    margin-top: 0.375rem;
  }
}

/* note */
.note {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F4A214;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background: #FCF5EA;
  border-radius: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 0.9375rem;
    padding: 1.5625rem 1.25rem;
  }
}

/* pagination */
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .pagination ul {
    gap: 0.625rem;
  }
}
.pagination a, .pagination span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #09A7EE;
  border-radius: 50%;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
}
.pagination .current {
  background: #FBFCE6;
}
.pagination .dots {
  border: none;
  width: unset;
  min-width: unset;
}
.pagination .prev {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
  margin-right: 35px;
  margin-right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .pagination .prev {
    margin-right: 0.625rem;
  }
}
.pagination .next {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
  margin-left: 35px;
  margin-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .pagination .next {
    margin-left: 0.625rem;
  }
}

/* post */
.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}

.post__category span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8AC45E;
}
@media screen and (max-width: 767px) {
  .post__category span {
    font-size: 1.125rem;
  }
}

.post__date {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #868686;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .post__date {
    font-size: 1rem;
  }
}

.post__title {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .post__title {
    margin-top: 1.25rem;
  }
}

.post__content {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .post__content {
    margin-top: 1.875rem;
  }
}
.post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content h2, .post__content h3, .post__content h4, .post__content h5, .post__content h6 {
    margin-bottom: 1.25rem;
  }
}
.post__content h2 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  font-weight: 700;
  line-height: 1.43;
}
@media screen and (max-width: 767px) {
  .post__content h2 {
    font-size: 1.375rem;
  }
}
.post__content h3 {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.33;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post__content h3 {
    font-size: 1.25rem;
  }
}
.post__content h4, .post__content h5, .post__content h6 {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .post__content h4, .post__content h5, .post__content h6 {
    font-size: 1.125rem;
  }
}
.post__content p {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .post__content p {
    font-size: 0.9375rem;
  }
}
.post__content p:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content p:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content p a {
  color: #09A7EE;
  text-decoration: underline;
}
.post__content figure:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content figure:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.post__content ul:not(:last-child) {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .post__content ul:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.post__content li {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.64;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__content li {
    font-size: 0.9375rem;
  }
}
.post__content li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  color: #09A7EE;
}
.post__content table {
  background: #fff;
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  width: 100%;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .post__content table {
    -webkit-text-size-adjust: 100%;
    margin-top: 1.5625rem;
  }
}
.post__content table tr:not(:first-child) {
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
}
.post__content table th, .post__content table td {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.08em;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__content table th, .post__content table td {
    padding: 0.9375rem 1.25rem;
  }
}
.post__content table th:first-child, .post__content table td:first-child {
  text-align: left;
}
.post__content table th:not(:first-child), .post__content table td:not(:first-child) {
  border-left: 1px solid #D9D9D9;
  border-left: 0.0625rem solid #D9D9D9;
}
.post__content table th {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  background: #09A7EE;
}
@media screen and (max-width: 767px) {
  .post__content table th {
    font-size: 0.9375rem;
  }
}
.post__content table td {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .post__content table td {
    font-size: 0.9375rem;
  }
}
.post__content table td:first-child {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post__content table td:first-child {
    font-size: 0.9375rem;
  }
}
.post__content table a {
  text-decoration: underline;
  color: #09A7EE;
}

.post__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #B3B3B3;
  border-top: 0.0625rem solid #B3B3B3;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .post__links {
    margin-top: 2.5rem;
  }
}

.post__link {
  text-align: center;
  display: block;
  width: 240px;
  width: 15rem;
  max-width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  background: #E8F6F8;
  border-radius: 0.625rem;
  padding: 14px;
  padding: 0.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post__link {
    width: 9.375rem;
    font-size: 1rem;
    padding: 0.75rem;
  }
}
.post__link::before {
  position: absolute;
  content: "";
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .post__link::before {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .post__prev {
    padding-left: 2.5rem;
  }
}
.post__prev::before {
  left: 20px;
  left: 1.25rem;
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .post__prev::before {
    left: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .post__next {
    padding-right: 2.5rem;
  }
}
.post__next::before {
  right: 20px;
  right: 1.25rem;
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .post__next::before {
    right: 0.625rem;
  }
}

.post__btn {
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .post__btn {
    margin-top: 2.5rem;
  }
}

/* report */
.report__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .report__inner {
    display: block;
  }
}

.report__img {
  width: 27%;
}
@media screen and (max-width: 767px) {
  .report__img {
    width: 100%;
  }
}

.report__list {
  width: 68%;
  border-bottom: 1px solid #D9D9D9;
  border-bottom: 0.0625rem solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .report__list {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.report__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .report__list-item {
    display: block;
    padding: 0.9375rem 0;
  }
}

.report__list-title {
  min-width: 150px;
  min-width: 9.375rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .report__list-title {
    min-width: unset;
    font-size: 0.9375rem;
  }
}

.report__list-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .report__list-text {
    font-size: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

/* slide */
.slide {
  display: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.slide.slick-initialized {
  display: block;
}

.slide-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .slide-nav {
    gap: 0.9375rem;
    margin-top: 1.25rem;
  }
}
.slide-nav .slide-arrow {
  display: block;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .slide-nav .slide-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.slide-nav .slide-arrow:hover {
  opacity: 1;
}
.slide-nav .prev-arrow {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
}
.slide-nav .next-arrow {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
}
.slide-nav .slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slide-nav .slide-dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .slide-nav .slide-dots ul {
    gap: 0.9375rem;
  }
}
.slide-nav .slide-dots li {
  display: inline-block;
  background: #E4F0F8;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .slide-nav .slide-dots li {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.slide-nav .slide-dots li button {
  text-indent: -9999px;
}
.slide-nav .slide-dots li.slick-active {
  background: #51C7DD;
}

/* slider */
.slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .slider__nav {
    margin-top: 1.25rem;
  }
}
.slider__nav .slide-arrow {
  display: block;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .slider__nav .slide-arrow {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.slider__nav .prev-arrow {
  background: url(../img/common/prev-icon02.png) no-repeat center/contain;
  margin-right: 50px;
  margin-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .slider__nav .prev-arrow {
    margin-right: 1.875rem;
  }
}
.slider__nav .next-arrow {
  background: url(../img/common/next-icon02.png) no-repeat center/contain;
  margin-left: 50px;
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .slider__nav .next-arrow {
    margin-left: 1.875rem;
  }
}
.slider__nav .slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider__nav .slide-dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .slider__nav .slide-dots ul {
    gap: 0 0.625rem;
  }
}
.slider__nav .slide-dots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #09A7EE;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
}
@media screen and (max-width: 767px) {
  .slider__nav .slide-dots li {
    font-size: 1rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}
.slider__nav .slide-dots li button {
  color: #09A7EE;
}
.slider__nav .slide-dots li.slick-active {
  background: #FBFCE6;
}

/* subheading */
.subheading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.33;
  font-weight: 700;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .subheading {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }
}

/* subtitle */
.subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.43;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    margin-top: 1.875rem;
  }
}

/* table-wrapper */
@media screen and (max-width: 767px) {
  .table-wrapper {
    overflow: auto;
  }
}

/* table */
.table {
  background: #fff;
  border: 2px solid #51C7DD;
  border: 0.125rem solid #51C7DD;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 0.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table {
    -webkit-text-size-adjust: 100%;
    width: 50rem;
  }
}
.table tr:first-child th {
  color: #fff;
  background: #09A7EE;
  border-top: none;
}
.table tr:first-child th:first-child {
  border-left: none;
}
.table th:first-child {
  text-align: left;
}
.table th, .table td {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.08em;
  border-left: 1px solid #D9D9D9;
  border-left: 0.0625rem solid #D9D9D9;
  border-top: 1px solid #D9D9D9;
  border-top: 0.0625rem solid #D9D9D9;
  padding: 14px 40px;
  padding: 0.875rem 2.5rem;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .table th, .table td {
    font-size: 0.9375rem;
    padding: 0.9375rem 1.25rem;
  }
}
.table th.left, .table td.left {
  text-align: left;
}
.table th.center, .table td.center {
  text-align: center;
}
.table th.right, .table td.right {
  text-align: right;
}
.table th.top, .table td.top {
  vertical-align: top;
}
.table th.middle, .table td.middle {
  vertical-align: middle;
}
.table th.bottom, .table td.bottom {
  vertical-align: bottom;
}
.table th.bg-gray, .table td.bg-gray {
  background: #F7F7F7;
}
.table th.w-260, .table td.w-260 {
  width: 260px;
  width: 16.25rem;
}
@media screen and (max-width: 767px) {
  .table th.w-260, .table td.w-260 {
    width: 11.25rem;
  }
}
.table a {
  text-decoration: underline;
  color: #09A7EE;
}

/* text */
.text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 0.9375rem;
  }
}

/* title */
.title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.title--border {
  padding-bottom: 32px;
  padding-bottom: 2rem;
  background: url(../img/common/border01_pc.png) no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .title--border {
    padding-bottom: 1.25rem;
    background: url(../img/common/border01_sp.png) no-repeat center bottom/contain;
  }
}

/* unit */
.unit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .unit__inner {
    display: block;
  }
}

.unit__inner--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.unit__img {
  width: 29%;
}
@media screen and (max-width: 767px) {
  .unit__img {
    width: 100%;
  }
}

.unit__body {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .unit__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.unit__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.81;
}
@media screen and (max-width: 767px) {
  .unit__text {
    font-size: 0.9375rem;
  }
}

/* year */
.year__items {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px 8px;
  gap: 0.625rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .year__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.year__item.current a {
  pointer-events: none;
  color: #fff;
  background: #09A7EE;
  border-color: #09A7EE;
}
.year__item a {
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 0.625rem;
  border: 2px solid #B3B3B3;
  border: 0.125rem solid #B3B3B3;
  padding: 8px;
  padding: 0.5rem;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
@media screen and (max-width: 767px) {
  .year__item a {
    font-size: 0.9375rem;
  }
}
.year__item a:hover {
  opacity: 1;
  color: #fff;
  background: #09A7EE;
  border-color: #09A7EE;
}

/* confirm */
.confirm .form__item-label {
  padding-top: 0;
}
.confirm .form__item-label span {
  display: none;
}
.confirm .form__address-item-label {
  padding-top: 0;
}
.confirm .form__text {
  display: none;
}
.confirm .form__privacy {
  display: none;
}

/* contact */
.contact__box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .contact__box {
    padding: 1.5625rem 1.25rem;
    margin-top: 1.5625rem;
  }
}

.contact__box-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact__box-text {
    font-size: 1rem;
  }
}

.contact__form {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 2.5rem;
  }
}

/* thanks */
.thanks {
  text-align: center;
}

.thanks__box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 40px 20px 35px;
  padding: 2.5rem 1.25rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .thanks__box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}

.thanks__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .thanks__subtitle {
    font-size: 1.25rem;
  }
}

.thanks__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

/* about */
.about {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 3.75rem 0;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .about__inner {
    display: block;
    margin-top: 1.5625rem;
  }
}

.about__body {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .about__body {
    width: 100%;
  }
}

.about__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 1.25rem;
  }
}

.about__text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    line-height: 1.6;
  }
}

.about__img {
  width: 49%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 100%;
    margin-top: 1.5625rem;
  }
}
.about__img:after {
  position: absolute;
  content: "";
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  background: #E8F6F8;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about__img:after {
    width: 6.25rem;
    height: 6.25rem;
  }
}
.about__img img {
  border-radius: 0.625rem;
}

/* activity */
.activity {
  padding: 45px 0 100px;
  padding: 2.8125rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .activity {
    padding: 1.25rem 0 5rem;
  }
}

.activity__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .activity__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.activity__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .activity__card {
    display: block;
    height: auto;
  }
}

.activity__card-img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.activity__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 30px 40px 40px;
  padding: 1.875rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .activity__card-body {
    display: block;
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.activity__card-subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .activity__card-subtitle {
    font-size: 1.125rem;
  }
}

.activity__card-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .activity__card-title {
    font-size: 1.25rem;
  }
}

.activity__card-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .activity__card-text {
    font-size: 0.9375rem;
    margin-bottom: 0;
    margin-top: 1.25rem;
  }
}

.activity__card-btn {
  width: 320px;
  width: 20rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
  margin: auto auto 0;
}
@media screen and (max-width: 767px) {
  .activity__card-btn {
    width: 17.5rem;
    font-size: 1rem;
    padding: 0.8125rem 0;
    margin-top: 1.25rem;
  }
}
.activity__card-btn::after {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .activity__card-btn::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* cv */
.cv {
  text-align: center;
  background: #09A7EE;
  border-radius: 1.875rem 1.875rem 0 0;
  margin-bottom: -200px;
  margin-bottom: -12.5rem;
  padding: 60px 0 200px;
  padding: 3.75rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 2.5rem 0 6.25rem;
    margin-bottom: -9.375rem;
  }
}
.cv .title {
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .cv .title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.cv .lead {
  color: #fff;
}

.cv__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .cv__btns {
    display: block;
    margin-top: 1.5625rem;
  }
}

.cv__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1.25rem);
          flex: 0 1 calc(50% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .cv__btn + .cv__btn {
    margin-top: 0.9375rem;
  }
}

.cv__btn--contact .cv__btn-inner {
  background: #FBFCE6;
}
.cv__btn--contact .cv__btn-text {
  background: url(../img/common/mail-icon.png) no-repeat center left/45px;
  background: url(../img/common/mail-icon.png) no-repeat center left/2.8125rem;
}
@media screen and (max-width: 767px) {
  .cv__btn--contact .cv__btn-text {
    background-size: 1.875rem;
  }
}

.cv__btn--search .cv__btn-inner {
  background: #F0F9FF;
}
.cv__btn--search .cv__btn-text {
  background: url(../img/common/search-icon.png) no-repeat center left/45px;
  background: url(../img/common/search-icon.png) no-repeat center left/2.8125rem;
}
@media screen and (max-width: 767px) {
  .cv__btn--search .cv__btn-text {
    background-size: 1.875rem;
  }
}

.cv__btn--tel .cv__btn-inner {
  background: #fff;
}

.cv__btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.625rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  min-height: 140px;
  min-height: 8.75rem;
}
@media screen and (max-width: 767px) {
  .cv__btn-inner {
    min-height: 5.625rem;
  }
}

.cv__btn-text {
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-left: 70px;
  padding-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .cv__btn-text {
    font-size: 1.125rem;
    padding-left: 2.5rem;
  }
}

.cv__btn-subtext {
  font-size: 19px;
  font-size: 1.1875rem;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .cv__btn-subtext {
    font-size: 0.9375rem;
  }
}

.cv__btn-number {
  font-size: 40px;
  font-size: 2.5rem;
  color: #09A7EE;
  line-height: 1.3;
  letter-spacing: 0.08em;
  background: url(../img/common/tel-icon.png) no-repeat center left/32px;
  background: url(../img/common/tel-icon.png) no-repeat center left/2rem;
  padding-left: 43px;
  padding-left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .cv__btn-number {
    font-size: 1.75rem;
    line-height: 1.2;
    background-size: 1.25rem;
    padding-left: 1.875rem;
  }
}

.cv__btn-time {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .cv__btn-time {
    font-size: 0.9375rem;
  }
}

/* exercise-classroom */
.exercise-classroom .fv__content {
  padding: 210px 0 120px;
  padding: 13.125rem 0 7.5rem;
  background: url(../img/exercise-classroom/fv-bg.png) no-repeat center left/cover;
}
@media screen and (max-width: 767px) {
  .exercise-classroom .fv__content {
    padding: 6.25rem 0 3.75rem;
  }
}
.exercise-classroom .fv__tag {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .exercise-classroom .fv__tag {
    margin-top: 2.5rem;
  }
}

/* faq */
.faq {
  padding: 50px 0 100px;
  padding: 3.125rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 1.25rem 0 3.75rem;
  }
}

.faq__items {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__items {
    margin-top: 1.875rem;
  }
}

.faq__item {
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  border-radius: 0.625rem;
}
.faq__item + .faq__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .faq__item + .faq__item {
    margin-top: 1.25rem;
  }
}

.faq__item-header {
  padding: 40px;
  padding: 2.5rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-header {
    padding: 1.25rem 2.5rem 1.25rem 0.9375rem;
  }
}
.faq__item-header::after, .faq__item-header::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 3px;
  height: 0.1875rem;
  background: #09A7EE;
  border-radius: 0.625rem;
  top: 55px;
  top: 3.4375rem;
  right: 60px;
  right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .faq__item-header::after, .faq__item-header::before {
    right: 1.25rem;
    top: 1.875rem;
  }
}
.faq__item-header::before {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item-header.active::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .faq__item-title {
    font-size: 1rem;
    gap: 0.625rem;
  }
}
.faq__item-title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  width: 2.5rem;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  background: #09A7EE;
  border-radius: 50%;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .faq__item-title span {
    width: 1.875rem;
    min-width: 1.875rem;
    height: 1.875rem;
    font-size: 1.125rem;
    padding-bottom: 0;
  }
}

.faq__item-body {
  display: none;
  padding: 0 40px 40px;
  padding: 0 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__item-body {
    padding: 0 0.9375rem 1.25rem;
  }
}

.faq__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  border-top: 1px solid #09A7EE;
  border-top: 0.0625rem solid #09A7EE;
  padding-top: 25px;
  padding-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    font-size: 0.9375rem;
    padding-top: 0.9375rem;
  }
}

.faq__item-subtext {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 35px 40px;
  padding: 2.1875rem 2.5rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .faq__item-subtext {
    font-size: 0.9375rem;
    padding: 1.25rem 1.25rem;
    margin-top: 0.9375rem;
  }
}

/* featurs */
.features {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 2.5rem 0 3.75rem;
  }
}
.features .title {
  text-align: left;
  margin-bottom: 0;
}
.features .subtitle {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .features .subtitle {
    margin-top: 1.25rem;
  }
}

.features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .features__inner {
    display: block;
  }
}

.features__body {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .features__body {
    width: 100%;
  }
}

.features__text {
  line-height: 1.45;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.features__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .features__img {
    width: 100%;
    margin-top: 1.25rem;
  }
}

/* flow */
.flow {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-bottom: 1.875rem;
  }
}

.flow__unit + .flow__unit {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__unit + .flow__unit {
    margin-top: 1.25rem;
  }
}

.flow__unit-title {
  text-align: center;
  width: 168px;
  width: 10.5rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #09A7EE;
  color: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-title {
    width: 6.25rem;
    font-size: 1rem;
  }
}

.flow__unit-body {
  background: #fff;
  border-radius: 0 0.625rem 0.625rem 0.625rem;
  padding: 40px 40px 40px 35px;
  padding: 2.5rem 2.5rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-body {
    padding: 1.5625rem 1.25rem;
  }
}

.flow__unit-item + .flow__unit-item {
  border-top: 1px solid #09A7EE;
  border-top: 0.0625rem solid #09A7EE;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-item + .flow__unit-item {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.flow__unit-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-item-inner {
    gap: 0.9375rem;
  }
}

.flow__unit-item-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 75px;
  width: 4.6875rem;
  min-width: 75px;
  min-width: 4.6875rem;
  height: 75px;
  height: 4.6875rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: #09A7EE;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-item-number {
    width: 2.8125rem;
    min-width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.75rem;
    margin-top: 0;
  }
}

.flow__unit-item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .flow__unit-item-title {
    font-size: 1.25rem;
  }
}

.flow__unit-item-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.46;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-item-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.flow__unit-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 37px;
  gap: 2.3125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .flow__unit-imgs {
    display: block;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.flow__unit-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 1.54167rem);
          flex: 0 1 calc(33.333% - 1.54167rem);
}
.flow__unit-img img {
  border-radius: 0.625rem;
}

.flow__video-wrapper {
  width: 950px;
  width: 59.375rem;
  max-width: 100%;
  margin: 65px auto 0;
  margin: 4.0625rem auto 0;
}

.flow__video {
  width: 100%;
  padding-top: 58.3333333333%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__video {
    margin-top: 1.875rem;
  }
}
.flow__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
}

.flow__caption {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__caption {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

/* fv */
.fv {
  font-family: "Zen Maru Gothic", sans-serif;
}

.fv__content {
  padding: 195px 0 100px;
  padding: 12.1875rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .fv__content {
    padding: 6.25rem 0 3.75rem;
  }
}

.fv__subtitle {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  background: #09A7EE;
  letter-spacing: 0.08em;
  border-radius: 1.5625rem;
  padding: 8px 23px;
  padding: 0.5rem 1.4375rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__subtitle {
    font-size: 1rem;
    padding: 0.375rem 1.25rem;
  }
}
.fv__subtitle::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 12px;
  height: 0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -12px;
  bottom: -0.75rem;
  background: url(../img/exercise-classroom/fv-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .fv__subtitle::after {
    bottom: -0.5625rem;
  }
}

.fv__title {
  width: 402px;
  width: 25.125rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__title {
    width: 17.5rem;
  }
}

.fv__text {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.82;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1rem;
  }
}

.fv__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .fv__tag {
    gap: 0.625rem;
    margin-top: 2.5rem;
  }
}
.fv__tag span {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #09A7EE;
  background: #fff;
  border-radius: 1.5625rem;
  padding: 7px 37px;
  padding: 0.4375rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .fv__tag span {
    font-size: 1rem;
    padding: 0.3125rem 1.25rem;
  }
}

.fv__footer {
  background: #09A7EE;
  border-radius: 1.875rem;
  padding: 50px 0;
  padding: 3.125rem 0;
  margin-top: -30px;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__footer {
    border-radius: 1.25rem;
    margin-top: -1.25rem;
    padding: 1.875rem 0;
  }
}

.fv__units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.fv__unit {
  background: #fff;
  border-radius: 0.625rem;
  padding: 35px 15px 15px;
  padding: 2.1875rem 0.9375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .fv__unit {
    padding: 1.5625rem 1.25rem;
  }
}
.fv__unit:first-child .fv__unit-title {
  color: #09A7EE;
  background: url(../img/exercise-classroom/fv-border01.png) no-repeat center bottom/300px;
  background: url(../img/exercise-classroom/fv-border01.png) no-repeat center bottom/18.75rem;
}
.fv__unit:first-child .fv__unit-btn a {
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
}
.fv__unit:first-child .fv__unit-btn:first-child a {
  color: #09A7EE;
  background: #E7F3F8;
}
.fv__unit:first-child .fv__unit-btn:nth-child(2) a {
  background: #09A7EE;
}
.fv__unit:nth-child(2) .fv__unit-title {
  color: #8AC45E;
  background: url(../img/exercise-classroom/fv-border02.png) no-repeat center bottom/300px;
  background: url(../img/exercise-classroom/fv-border02.png) no-repeat center bottom/18.75rem;
}
.fv__unit:nth-child(2) .fv__unit-btn a {
  border: 1px solid #8AC45E;
  border: 0.0625rem solid #8AC45E;
}
.fv__unit:nth-child(2) .fv__unit-btn:first-child a {
  color: #8AC45E;
  background: #ECF5E5;
}
.fv__unit:nth-child(2) .fv__unit-btn:nth-child(2) a {
  background: #8AC45E;
}
.fv__unit:nth-child(3) .fv__unit-title {
  color: #EFB54C;
  background: url(../img/exercise-classroom/fv-border03.png) no-repeat center bottom/300px;
  background: url(../img/exercise-classroom/fv-border03.png) no-repeat center bottom/18.75rem;
}
.fv__unit:nth-child(3) .fv__unit-btn a {
  border: 1px solid #EFB54C;
  border: 0.0625rem solid #EFB54C;
}
.fv__unit:nth-child(3) .fv__unit-btn:first-child a {
  color: #EFB54C;
  background: #FCF5EA;
}
.fv__unit:nth-child(3) .fv__unit-btn:nth-child(2) a {
  background: #EFB54C;
}

.fv__unit-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .fv__unit-title {
    font-size: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.fv__unit-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .fv__unit-text {
    font-size: 0.9375rem;
    padding: 0;
  }
}

.fv__unit-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .fv__unit-btns {
    margin-top: 1.25rem;
  }
}

.fv__unit-btn:nth-child(2) a {
  color: #fff;
}
.fv__unit-btn a {
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 0.625rem;
  padding: 14px;
  padding: 0.875rem;
}
@media screen and (max-width: 767px) {
  .fv__unit-btn a {
    font-size: 1rem;
  }
}

.fv__subheading {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .fv__subheading {
    font-size: 1.125rem;
  }
}

.fv__heading {
  text-align: center;
  width: 880px;
  width: 55rem;
  max-width: 100%;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  border-radius: 1.5625rem;
  background: #FBFCE6;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  padding: 25px 10px;
  padding: 1.5625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .fv__heading {
    font-size: 1.25rem;
    padding: 0.9375rem 0.625rem;
    border-radius: 0.9375rem;
    margin-top: 1.25rem;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    display: block;
  }
}

.fv__headline {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .fv__headline {
    font-size: 1.25rem;
  }
}

.fv__btn-wrapper {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__btn-wrapper {
    margin-top: 1.25rem;
  }
}

.fv__notes {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__notes {
    font-size: 1.125rem;
  }
}
.fv__notes::before, .fv__notes::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 1px;
  width: 0.0625rem;
  height: 30px;
  height: 1.875rem;
  top: 5px;
  top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .fv__notes::before, .fv__notes::after {
    height: 1.375rem;
  }
}
.fv__notes::before {
  left: -15px;
  left: -0.9375rem;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.fv__notes::after {
  right: -15px;
  right: -0.9375rem;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.fv__btn {
  background: #FBFCE6;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .fv__btn {
    margin-top: 0.625rem;
  }
}
.fv__btn::after {
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}

/* introduction */
.introduction {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding-top: 1.25rem;
  }
}

.introduction__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .introduction__content {
    display: block;
  }
}

.introduction__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .introduction__img {
    width: 100%;
  }
}
.introduction__img img {
  border-radius: 0.625rem 0 0 0.625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .introduction__img img {
    border-radius: 0.625rem 0.625rem 0 0;
    height: auto;
  }
}

.introduction__body {
  width: 50%;
  background: #fff;
  padding: 45px 50px;
  padding: 2.8125rem 3.125rem;
  border-radius: 0 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .introduction__body {
    width: 100%;
    padding: 1.875rem 1.25rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}

.introduction__text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.64;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .introduction__text {
    font-size: 0.9375rem;
  }
}

/* latest-news */
@media screen and (max-width: 767px) {
  .latest-news {
    padding-bottom: 1.25rem;
  }
}
.latest-news .title {
  text-align: left;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.latest-news .title::before {
  position: absolute;
  content: "";
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  left: -60px;
  left: -3.75rem;
  top: -40px;
  top: -2.5rem;
  background: url(../img/common/circle01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .latest-news .title::before {
    width: 8.75rem;
    height: 8.75rem;
    left: -3.125rem;
    top: -2.5rem;
  }
}

.latest-news__content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .latest-news__content {
    margin-top: 1.5625rem;
  }
}
.latest-news__content .news {
  border-radius: 0.625rem;
}

.latest-news__btn {
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .latest-news__btn {
    margin-top: 1.25rem;
  }
}

/* leader */
.leader .fv__content {
  background: url(../img/leader/fv-bg.jpg) no-repeat center left/cover;
}
.leader .about__img::after {
  right: -69px;
  right: -4.3125rem;
  bottom: -29px;
  bottom: -1.8125rem;
}
@media screen and (max-width: 767px) {
  .leader .about__img::after {
    right: -1.875rem;
  }
}

/* location */
.location {
  background: #FBFCE6;
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .location {
    padding-bottom: 3.125rem;
  }
}
.location .title {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .location .title {
    margin-bottom: 1.5625rem;
  }
}

.location__body {
  width: 750px;
  width: 46.875rem;
  max-width: 100%;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .location__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.location__img {
  width: 500px;
  width: 31.25rem;
  max-width: 100%;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 62%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .location__img {
    width: 18.75rem;
    top: 1.875rem;
  }
}

.location__units {
  width: 400px;
  width: 25rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px 0;
  gap: 3.4375rem 0;
}
@media screen and (max-width: 767px) {
  .location__units {
    width: 100%;
    gap: 1.875rem 0;
  }
}

.location__unit {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .location__unit {
    width: 50%;
  }
}

.location__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .location__subtitle {
    font-size: 1.25rem;
  }
}

.location__links {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .location__links {
    margin-top: 0.9375rem;
  }
}

.location__link + .location__link {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
.location__link a {
  display: inline-block;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow-icon01.png) no-repeat left top 4px/24px;
  background: url(../img/common/arrow-icon01.png) no-repeat left top 0.25rem/1.5rem;
  padding-left: 34px;
  padding-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .location__link a {
    font-size: 1rem;
    background: url(../img/common/arrow-icon01.png) no-repeat left top 0.125rem/1.25rem;
    padding-left: 1.5625rem;
  }
}

.location__btn {
  margin: 65px auto 0;
  margin: 4.0625rem auto 0;
}
@media screen and (max-width: 767px) {
  .location__btn {
    margin-top: 2.5rem;
  }
}

/* media */
.media__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .media__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.media__card {
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  border-radius: 0.625rem;
}

.media__card-inner {
  display: block;
}

.media__card-img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.media__card-body {
  padding: 20px 30px 25px;
  padding: 1.25rem 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .media__card-body {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.media__card-subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .media__card-subtitle {
    font-size: 1.125rem;
  }
}

.media__card-title {
  min-height: 72px;
  min-height: 4.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .media__card-title {
    min-height: unset;
    font-size: 1.25rem;
  }
}

.media__card-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .media__card-text {
    font-size: 0.9375rem;
  }
}

/* municipality */
/* participants */
.participants .fv__content {
  background: url(../img/participants/fv-bg.png) no-repeat center left/cover;
}
.participants .about__img::after {
  top: -69px;
  top: -4.3125rem;
  right: -57px;
  right: -3.5625rem;
}
@media screen and (max-width: 767px) {
  .participants .about__img::after {
    top: -1.875rem;
    right: -1.875rem;
  }
}

/* physical */
.physical {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .physical {
    padding: 1.25rem 0;
  }
}

.physical__groups {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .physical__groups {
    margin-top: 2.5rem;
  }
}

.physical__group + .physical__group {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .physical__group + .physical__group {
    margin-top: 2.5rem;
  }
}
.physical__group:nth-child(2) .physical__body {
  padding: 60px 185px 70px;
  padding: 3.75rem 11.5625rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .physical__group:nth-child(2) .physical__body {
    padding: 1.875rem 1.25rem;
  }
}

.physical__subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .physical__subtitle {
    font-size: 1.25rem;
  }
}

.physical__body {
  border-radius: 0.625rem;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .physical__body {
    margin-top: 1.25rem;
  }
}

.physical__img img {
  border-radius: 0.625rem;
}

.physical__text {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .physical__text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.physical__unit + .physical__unit {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .physical__unit + .physical__unit {
    margin-top: 3.75rem;
  }
}

.physical__unit-title-wrapper {
  text-align: center;
}

.physical__unit-title {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #E8F6F8;
  padding: 20px 30px 22px;
  padding: 1.25rem 1.875rem 1.375rem;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .physical__unit-title {
    font-size: 1.125rem;
    padding: 0.9375rem 1.25rem;
  }
}
.physical__unit-title::after {
  position: absolute;
  content: "";
  width: 25px;
  width: 1.5625rem;
  height: 21px;
  height: 1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -20px;
  bottom: -1.25rem;
  background: url(../img/participants/physical-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .physical__unit-title::after {
    bottom: -0.9375rem;
  }
}
.physical__unit-title span {
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .physical__unit-title span {
    font-size: 1.25rem;
  }
}
.physical__unit-title span .large {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-title span .large {
    font-size: 1.75rem;
  }
}
.physical__unit-title span .small {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-title span .small {
    font-size: 1.125rem;
  }
}

.physical__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  gap: 2.1875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-inner {
    display: block;
    padding-left: 0;
    margin-top: 1.875rem;
  }
}

.physical__unit-subimg {
  width: 335px;
  width: 20.9375rem;
  max-width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-subimg {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .physical__unit-img-wrapper {
    margin-top: 1.875rem;
  }
}

.physical__unit-img {
  width: 113px;
  width: 7.0625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .physical__unit-img {
    width: 3.75rem;
  }
}

.physical__unit-caption {
  text-align: center;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-caption {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.physical__unit-box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  padding: 40px 40px;
  padding: 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-box {
    margin-top: 1.875rem;
    padding: 1.5625rem 0.9375rem;
  }
}

.physical__unit-box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 27px;
  gap: 1.6875rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-box-header {
    gap: 0.625rem;
    padding-right: 0;
  }
}
.physical__unit-box-header span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 1.25rem;
  padding: 5px 24px;
  padding: 0.3125rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-box-header span {
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem;
  }
}
.physical__unit-box-header span:first-child {
  background: #D6D6D6;
}
.physical__unit-box-header span:nth-child(2) {
  color: #fff;
  background: #09A7EE;
}

.physical__unit-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.physical__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.physical__unit-list-item + .physical__unit-list-item {
  border-top: 1px solid #C3C3C3;
  border-top: 0.0625rem solid #C3C3C3;
  padding-top: 7px;
  padding-top: 0.4375rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.physical__unit-list-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-title {
    font-size: 0.875rem;
    min-width: 6.25rem;
  }
}

.physical__unit-list-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  gap: 1.6875rem;
  font-weight: 700;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-body {
    gap: 0.625rem;
    padding-right: 0;
  }
}

.physical__unit-list-before, .physical__unit-list-after {
  text-align: center;
  width: 105px;
  width: 6.5625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-before, .physical__unit-list-after {
    width: 4.0625rem;
  }
}

.physical__unit-list-before {
  font-size: 27px;
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-before {
    font-size: 1.25rem;
  }
}

.physical__unit-list-after {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-after {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.physical__unit-list-after::before {
  position: absolute;
  content: "";
  width: 28px;
  width: 1.75rem;
  height: 20px;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
  left: -1.875rem;
  background: url(../img/common/arrow-icon05.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-after::before {
    width: 0.875rem;
    height: 0.625rem;
    left: -1.125rem;
  }
}
.physical__unit-list-after span {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
  color: #09A7EE;
  margin-right: 2px;
  margin-right: 0.125rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-list-after span {
    font-size: 1.375rem;
  }
}

.physical__unit-caution {
  text-align: right;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .physical__unit-caution {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.6;
    padding-right: 0;
    margin-top: 0.625rem;
  }
}

.physical__change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .physical__change {
    display: block;
  }
}

.physical__change-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .physical__change-item {
    width: 100%;
  }
}
.physical__change-item:first-child .physical__change-item-title {
  border-radius: 0.625rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .physical__change-item:first-child .physical__change-item-title {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.physical__change-item:nth-child(2) {
  border-left: 1px solid #09A7EE;
  border-left: 0.0625rem solid #09A7EE;
  position: relative;
}
@media screen and (max-width: 767px) {
  .physical__change-item:nth-child(2) {
    border-left: none;
  }
}
.physical__change-item:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 76px;
  width: 4.75rem;
  height: 54px;
  height: 3.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -38px;
  left: -2.375rem;
  background: url(../img/common/arrow-icon05.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .physical__change-item:nth-child(2)::before {
    width: 3.125rem;
    height: 2.5rem;
    top: -1.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.physical__change-item:nth-child(2) .physical__change-item-title {
  border-radius: 0 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .physical__change-item:nth-child(2) .physical__change-item-title {
    padding-top: 1.875rem;
    border-radius: 0;
  }
}

.physical__change-item-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #E8F6F8;
  padding: 18px;
  padding: 1.125rem;
}
@media screen and (max-width: 767px) {
  .physical__change-item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 3.125rem;
    font-size: 0.9375rem;
    padding: 0.9375rem;
  }
}

.physical__change-item-body {
  padding: 58px 20px;
  padding: 3.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .physical__change-item-body {
    padding: 1.875rem 1.25rem;
  }
}

.physical__change-item-img {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.physical__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  border-top: 1px solid #09A7EE;
  border-top: 0.0625rem solid #09A7EE;
}
@media screen and (max-width: 767px) {
  .physical__results {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

.physical__results-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E8F6F8;
  letter-spacing: 0.08em;
  border-radius: 0 0 0 0.625rem;
  padding: 15px 45px;
  padding: 0.9375rem 2.8125rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .physical__results-title {
    padding: 0.625rem 1.25rem;
  }
}

.physical__results-text {
  letter-spacing: 0.08em;
  border-left: 1px solid #09A7EE;
  border-left: 0.0625rem solid #09A7EE;
  padding: 15px 50px;
  padding: 0.9375rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .physical__results-text {
    padding: 0.625rem 1.25rem;
  }
}

/* point */
.point {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .point {
    padding-bottom: 2.5rem;
  }
}
.point .lead {
  text-align: left;
  line-height: 1.82;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .point .lead {
    margin-top: 1.25rem;
  }
}

.point__subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .point__subtitle {
    font-size: 1.375rem;
    margin-top: 0;
  }
}

.point__units {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .point__units {
    margin-top: 1.875rem;
  }
}

.point__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  gap: 2.5rem;
  background: #fff;
  border-radius: 0.625rem;
  padding: 35px 30px 40px 35px;
  padding: 2.1875rem 1.875rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .point__unit {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}
.point__unit + .point__unit {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .point__unit + .point__unit {
    margin-top: 1.25rem;
  }
}
.point__unit:first-child .point__unit-item:nth-child(2) .point__unit-item-img, .point__unit:nth-child(2) .point__unit-item:nth-child(2) .point__unit-item-img {
  width: 114px;
  width: 7.125rem;
}
@media screen and (max-width: 767px) {
  .point__unit:first-child .point__unit-item:nth-child(2) .point__unit-item-img, .point__unit:nth-child(2) .point__unit-item:nth-child(2) .point__unit-item-img {
    width: 6.125rem;
  }
}

.point__unit-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .point__unit-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.9375rem;
  }
}

.point__unit-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 75px;
  width: 4.6875rem;
  min-width: 75px;
  min-width: 4.6875rem;
  height: 75px;
  height: 4.6875rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background: #09A7EE;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .point__unit-number {
    width: 2.8125rem;
    min-width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.75rem;
  }
}

.point__unit-body {
  width: 100%;
}

.point__unit-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.43;
  color: #09A7EE;
}
@media screen and (max-width: 767px) {
  .point__unit-title {
    font-size: 1.25rem;
  }
}

.point__unit-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 17px 30px;
  padding: 1.0625rem 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .point__unit-subtitle {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
    padding: 0.625rem 0.9375rem;
  }
}

.point__unit-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.46;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .point__unit-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.point__unit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .point__unit-items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.25rem;
    gap: 0.9375rem;
  }
}

.point__unit-item-title {
  text-align: center;
  width: 142px;
  width: 8.875rem;
  max-width: 100%;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 1.0625rem;
  color: #fff;
  background: #09A7EE;
  padding: 5px;
  padding: 0.3125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point__unit-item-title {
    width: 7.5rem;
    font-size: 0.9375rem;
  }
}

.point__unit-item-img {
  width: 154px;
  width: 9.625rem;
  max-width: 100%;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .point__unit-item-img {
    width: 8.125rem;
  }
}
.point__unit-item-img img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .point__unit-item-img img {
    border-radius: 0.3125rem;
  }
}

/* process */
.process {
  padding: 40px 0 100px;
  padding: 2.5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .process {
    padding: 1.25rem 0 3.75rem;
  }
}

.process__body {
  border-radius: 0.625rem;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  padding: 55px 70px 55px;
  padding: 3.4375rem 4.375rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .process__body {
    padding: 1.875rem 0.9375rem;
  }
}

.process__subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .process__subtitle {
    font-size: 1.25rem;
  }
}

.process__img {
  width: 920px;
  width: 57.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.process__text {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .process__text {
    text-align: left;
    font-size: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.process__subheading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .process__subheading {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.process__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .process__list {
    margin-top: 1.25rem;
  }
}

.process__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .process__list-item {
    gap: 0.625rem;
  }
}
.process__list-item + .process__list-item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .process__list-item + .process__list-item {
    margin-top: 1.25rem;
  }
}
.process__list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 5px;
  width: 0.3125rem;
  height: calc(100% + 1.875rem);
  bottom: -30px;
  bottom: -1.875rem;
  left: 58px;
  left: 3.625rem;
  background: #09A7EE;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .process__list-item:not(:last-child)::before {
    width: 0.1875rem;
    left: 1.875rem;
    height: calc(100% + 1.25rem);
  }
}
.process__list-item:last-child .process__list-title {
  background: #EFB44D;
}
.process__list-item:last-child .process__list-body {
  background: #FCF5EA;
}
.process__list-item:last-child .process__sublist-body::before {
  background: #EFB44D;
}

.process__list-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  width: 7.5rem;
  min-width: 120px;
  min-width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  border-radius: 50%;
  background: #09A7EE;
}
@media screen and (max-width: 767px) {
  .process__list-title {
    width: 3.75rem;
    min-width: 3.75rem;
    height: 3.75rem;
    font-size: 0.9375rem;
  }
}

.process__list-body {
  width: 100%;
  border-radius: 0.625rem;
  background: #E8F6F8;
  padding: 40px 30px 40px 40px;
  padding: 2.5rem 1.875rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .process__list-body {
    padding: 1.25rem 0.9375rem;
  }
}

.process__sublist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .process__sublist-item {
    display: block;
  }
}

.process__sublist-title {
  min-width: 210px;
  min-width: 13.125rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .process__sublist-title {
    min-width: unset;
    font-size: 1.125rem;
  }
}

.process__sublist-body {
  width: 100%;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .process__sublist-body {
    padding-left: 0;
    margin-top: 0.625rem;
  }
}
.process__sublist-body::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 120%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #09A7EE;
}
@media screen and (max-width: 767px) {
  .process__sublist-body::before {
    display: none;
  }
}

.process__sublist-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .process__sublist-text {
    display: block;
    font-size: 0.9375rem;
  }
}
.process__sublist-text:not(:first-child) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.process__sublist-text span {
  text-align: center;
  display: block;
  min-width: 160px;
  min-width: 10rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  border-radius: 0.9375rem;
  background: #09A7EE;
  padding: 2px;
  padding: 0.125rem;
}
@media screen and (max-width: 767px) {
  .process__sublist-text span {
    font-size: 0.9375rem;
    margin-bottom: 0.3125rem;
  }
}

.process__sublist-caution {
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.process__sublist-subtext {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #09A7EE;
  border-radius: 0.625rem;
  background: #fff;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .process__sublist-subtext {
    font-size: 0.9375rem;
    padding: 0.9375rem;
  }
}
.process__sublist-subtext span {
  display: inline-block;
  background: url(../img/common/check-icon02.png) no-repeat top 9px left/16px;
  background: url(../img/common/check-icon02.png) no-repeat top 0.5625rem left/1rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .process__sublist-subtext span {
    background: url(../img/common/check-icon02.png) no-repeat top 0.4375rem left/0.875rem;
    padding-left: 1.25rem;
  }
}

/* program */
.program {
  background: #09A7EE;
  border-radius: 1.875rem;
  padding: 75px 0 80px;
  padding: 4.6875rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .program {
    border-radius: 1.25rem;
    padding: 3.125rem 0 2.5rem;
  }
}
.program .title, .program .lead {
  color: #fff;
}

.program__inner {
  position: relative;
}
.program__inner::before, .program__inner::after {
  position: absolute;
  content: "";
  top: 0;
}
@media screen and (max-width: 767px) {
  .program__inner::before, .program__inner::after {
    top: -6.25rem;
  }
}
.program__inner::before {
  width: 112px;
  width: 7rem;
  height: 246px;
  height: 15.375rem;
  left: 0;
  background: url(../img/municipality/program-img01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .program__inner::before {
    width: 2.5rem;
    height: 6.25rem;
    left: -1.25rem;
  }
}
.program__inner::after {
  width: 106px;
  width: 6.625rem;
  height: 245px;
  height: 15.3125rem;
  right: 0;
  background: url(../img/municipality/program-img02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .program__inner::after {
    width: 2.5rem;
    height: 5.3125rem;
    right: -1.25rem;
  }
}

.program__btn {
  width: 480px;
  width: 30rem;
  background: #fff;
  color: #09A7EE;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .program__btn {
    width: rem8335;
    margin-top: 1.5625rem;
  }
}

/* promotion */
.promotion {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .promotion {
    padding-bottom: 1.875rem;
  }
}

.promotion__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .promotion__inner {
    display: block;
    margin-top: 1.875rem;
  }
}

.promotion__img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .promotion__img {
    width: 100%;
  }
}
.promotion__img img {
  border-radius: 0.625rem;
}

.promotion__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .promotion__body {
    width: 100%;
    margin-top: 1.25rem;
  }
}

.promotion__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .promotion__subtitle {
    font-size: 1.25rem;
  }
}

.promotion__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.78;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .promotion__text {
    font-size: 0.9375rem;
  }
}
.promotion__text span {
  font-weight: 700;
  color: #09A7EE;
}

.promotion__subtext {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #09A7EE;
  border-radius: 0.625rem;
  background: #fff;
  font-weight: 700;
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding: 25px;
  padding: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .promotion__subtext {
    font-size: 1rem;
    padding: 1.25rem;
  }
}
.promotion__subtext span {
  display: inline-block;
  background: url(../img/common/check-icon02.png) no-repeat top 9px left/16px;
  background: url(../img/common/check-icon02.png) no-repeat top 0.5625rem left/1rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .promotion__subtext span {
    background: url(../img/common/check-icon02.png) no-repeat top 0.4375rem left/0.875rem;
    padding-left: 1.25rem;
  }
}

.promotion__units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .promotion__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
    margin-top: 2.5rem;
  }
}

.promotion__unit {
  background: #fff;
  border-radius: 0.625rem;
  padding: 40px 40px 35px;
  padding: 2.5rem 2.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .promotion__unit {
    padding: 1.875rem 1.25rem;
  }
}

.promotion__unit-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background: url(../img/common/check-icon.png) no-repeat center left/40px;
  background: url(../img/common/check-icon.png) no-repeat center left/2.5rem;
  padding-left: 53px;
  padding-left: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .promotion__unit-title {
    font-size: 1.125rem;
    background-size: 1.875rem;
    padding-left: 2.5rem;
  }
}

.promotion__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .promotion__unit-text {
    font-size: 0.9375rem;
  }
}

.promotion__subheading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .promotion__subheading {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.promotion__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .promotion__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.promotion__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
  gap: 15px;
  gap: 0.9375rem;
  background: #fff;
  border-radius: 0.625rem;
  padding: 26px 20px;
  padding: 1.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .promotion__item {
    font-size: 0.9375rem;
    padding: 1.25rem;
  }
}
.promotion__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  width: 3rem;
  min-width: 48px;
  min-width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  background: #E8F6F8;
}
@media screen and (max-width: 767px) {
  .promotion__item span {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
}

.promotion__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  gap: 0.625rem;
  background: #E8F6F8;
  border-radius: 0.625rem;
  padding: 30px 30px 30px 40px;
  padding: 1.875rem 1.875rem 1.875rem 2.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .promotion__box {
    display: block;
    padding: 1.875rem 1.25rem;
  }
}

.promotion__box-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .promotion__box-title {
    text-align: center;
    font-size: 1.25rem;
  }
}

.promotion__box-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .promotion__box-btns {
    display: block;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .promotion__box-btn:first-child a {
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .promotion__box-btn:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.promotion__box-btn:nth-child(2) a {
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .promotion__box-btn:nth-child(2) a {
    padding-right: 1.25rem;
  }
}
.promotion__box-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 490px;
  width: 30.625rem;
  min-height: 90px;
  min-height: 5.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .promotion__box-btn a {
    width: 20.9375rem;
    min-height: unset;
    font-size: 0.9375rem;
    border-radius: 0.3125rem;
    padding: 0.9375rem 0;
    margin: 0 auto;
  }
}
.promotion__box-btn a::after {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .promotion__box-btn a::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 0.625rem;
  }
}

/* reason-wrapper */
.reason-wrapper {
  position: relative;
}
.reason-wrapper::before, .reason-wrapper::after {
  position: absolute;
  content: "";
  top: -140px;
  top: -8.75rem;
}
@media screen and (max-width: 767px) {
  .reason-wrapper::before, .reason-wrapper::after {
    top: -5rem;
  }
}
.reason-wrapper::before {
  width: 187px;
  width: 11.6875rem;
  height: 136px;
  height: 8.5rem;
  left: 100px;
  left: 6.25rem;
  background: url(../img/exercise-classroom/reason-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .reason-wrapper::before {
    width: 5rem;
    height: 3.75rem;
    left: 0.625rem;
  }
}
.reason-wrapper::after {
  width: 258px;
  width: 16.125rem;
  height: 156px;
  height: 9.75rem;
  right: 80px;
  right: 5rem;
  background: url(../img/exercise-classroom/reason-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .reason-wrapper::after {
    width: 6.25rem;
    height: 3.75rem;
    right: 0.625rem;
  }
}

/* reason */
.reason {
  padding: 50px 0 70px;
  padding: 3.125rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 1.875rem 0 3.75rem;
  }
}

.reason__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .reason__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.5625rem;
  }
}

.reason__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 0.625rem;
  padding: 40px 30px 40px;
  padding: 2.5rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .reason__unit {
    padding: 1.875rem 1.25rem;
  }
}

.reason__unit-icon {
  width: 160px;
  width: 10rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .reason__unit-icon {
    width: 7.5rem;
  }
}

.reason__unit-title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reason__unit-title {
    font-size: 1.25rem;
  }
}

.reason__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .reason__unit-text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
}

.reason__unit-subtext {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 35px 10px;
  padding: 2.1875rem 0.625rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .reason__unit-subtext {
    font-size: 1rem;
    padding: 1.25rem 0.3125rem;
    margin-top: 1.25rem;
  }
}

.reason__unit-box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 35px 30px;
  padding: 2.1875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .reason__unit-box {
    padding: 1.5625rem 1.25rem;
    margin-top: 1.25rem;
  }
}

.reason__unit-box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .reason__unit-box-title {
    font-size: 1.125rem;
  }
}

.reason__unit-box-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .reason__unit-box-text {
    font-size: 0.9375rem;
  }
}

.reason__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 65px;
  gap: 4.0625rem;
  background: #E8F6F8;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 60px 60px 60px 70px;
  padding: 3.75rem 3.75rem 3.75rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .reason__box {
    display: block;
    padding: 1.875rem 1.25rem;
    margin-top: 1.25rem;
  }
}

.reason__box-img {
  width: 93px;
  width: 5.8125rem;
  min-width: 93px;
  min-width: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .reason__box-img {
    width: 3.75rem;
    max-width: 100%;
    min-width: unset;
    margin: 0 auto;
  }
}

.reason__box-body {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__box-body {
    margin-top: 1.25rem;
  }
}

.reason__box-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .reason__box-title {
    font-size: 1.25rem;
  }
}

.reason__box-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reason__box-text {
    font-size: 0.9375rem;
  }
}

/* results */
.results {
  background: #FBFCE6;
  padding: 80px 0;
  padding: 5rem 0;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .results {
    padding: 2.5rem 0;
    margin-bottom: 5rem;
  }
}
.results::after {
  position: absolute;
  content: "";
  height: 180px;
  height: 11.25rem;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -65px;
  bottom: -4.0625rem;
  background: url(../img/common/bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .results::after {
    height: 6.25rem;
  }
}

.results__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .results__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.results__unit {
  background: #fff;
  border-radius: 0.625rem;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  padding: 35px 30px 30px;
  padding: 2.1875rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .results__unit {
    padding: 1.875rem 1.25rem;
  }
}

.results__unit-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #09A7EE;
  border-bottom: 0.0625rem solid #09A7EE;
  padding: 0 10px 35px;
  padding: 0 0.625rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .results__unit-header {
    display: block;
    padding: 0 0 0.625rem;
  }
}

.results__unit-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  background: url(../img/common/school-icon.png) no-repeat center left/40px;
  background: url(../img/common/school-icon.png) no-repeat center left/2.5rem;
  padding-left: 60px;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .results__unit-title {
    font-size: 1.25rem;
    background-size: 1.875rem;
    padding-left: 2.5rem;
  }
}

.results__unit-population {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .results__unit-population {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.results__unit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .results__unit-list {
    display: block;
    margin-top: 1.25rem;
  }
}

.results__unit-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .results__unit-list-item {
    gap: 1.875rem;
  }
  .results__unit-list-item + .results__unit-list-item {
    margin-top: 0.3125rem;
  }
}

.results__unit-list-title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .results__unit-list-title {
    font-size: 0.9375rem;
  }
}

.results__unit-list-text {
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #09A7EE;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .results__unit-list-text {
    font-size: 1.5rem;
  }
}
.results__unit-list-text::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  left: -30px;
  left: -1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow-icon06.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .results__unit-list-text::before {
    width: 0.9375rem;
    height: 0.9375rem;
    left: -1.5rem;
  }
}

.results__unit-box {
  background: #F7F7F7;
  border-radius: 0.625rem;
  padding: 45px 30px 35px;
  padding: 2.8125rem 1.875rem 2.1875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .results__unit-box {
    padding: 1.5625rem 1.25rem;
    margin-top: 1.25rem;
  }
}
.results__unit-box:before {
  position: absolute;
  content: "“";
  font-size: 96px;
  font-size: 6rem;
  font-weight: 700;
  color: #09A7EE;
  line-height: 1;
  left: 20px;
  left: 1.25rem;
  top: -15px;
  top: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .results__unit-box:before {
    font-size: 5rem;
  }
}

.results__unit-box-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .results__unit-box-text {
    font-size: 0.9375rem;
  }
}

.results__unit-box-subtext {
  text-align: right;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .results__unit-box-subtext {
    font-size: 0.9375rem;
  }
}

/* start */
.start__content {
  background: url(../img/municipality/start-bg.jpg) no-repeat center top/cover;
  padding: 140px 0 500px;
  padding: 8.75rem 0 31.25rem;
}
@media screen and (max-width: 767px) {
  .start__content {
    padding: 5rem 0 21.875rem;
  }
  .start__content .l-inner {
    padding: 0 0.625rem;
  }
}

.start__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .start__header {
    display: block;
  }
}

.start__subtitle {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  width: 12.5rem;
  min-width: 200px;
  min-width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: #09A7EE;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .start__subtitle {
    display: inline-block;
    width: auto;
    min-width: unset;
    height: auto;
    border-radius: 1.25rem;
    font-size: 0.9375rem;
    padding: 0.1875rem 1.25rem;
  }
}
.start__subtitle::after {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 26px;
  height: 1.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  right: -1.25rem;
  background: url(../img/municipality/start-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .start__subtitle::after {
    display: none;
  }
}

.start__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.46;
  text-shadow: 0px 0px 24px #09a7ee;
  white-space: nowrap;
  text-indent: 0.5em;
}
@media screen and (max-width: 767px) {
  .start__title {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-top: 0.625rem;
  }
}

.start__footer {
  text-align: center;
  border-radius: 1.875rem;
  background: #09A7EE;
  padding: 40px 0 60px;
  padding: 2.5rem 0 3.75rem;
  margin-top: -20px;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .start__footer {
    border-radius: 1.25rem;
    padding: 1.875rem 0;
  }
}

.start__subheading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .start__subheading {
    font-size: 1.25rem;
  }
}

.start__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .start__tag {
    display: block;
    margin-top: 0.9375rem;
  }
}
.start__tag span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #09A7EE;
  border-radius: 1.5625rem;
  background: #FBFCE6;
  padding: 8px 35px;
  padding: 0.5rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .start__tag span {
    display: block;
    font-size: 0.9375rem;
  }
  .start__tag span:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.start__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .start__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.start__item {
  min-height: 160px;
  min-height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .start__item {
    min-height: 7.5rem;
  }
}

.start__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FBFCE6;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .start__item-title {
    font-size: 1.5rem;
  }
}
.start__item-title span {
  font-size: 64px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .start__item-title span {
    font-size: 2.25rem;
  }
}

.start__item-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .start__item-text {
    font-size: 0.9375rem;
  }
}

/* support */
.support {
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 1.25rem 0;
  }
}

.support__units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .support__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.support__unit {
  border-radius: 0.625rem;
  border: 1px solid #09A7EE;
  border: 0.0625rem solid #09A7EE;
  padding: 40px 30px 35px;
  padding: 2.5rem 1.875rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .support__unit {
    padding: 1.875rem 1.25rem;
  }
}

.support__unit-icon {
  width: 160px;
  width: 10rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .support__unit-icon {
    width: 7.5rem;
  }
}

.support__unit-title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.33;
  color: #09A7EE;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .support__unit-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.support__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .support__unit-text {
    font-size: 0.9375rem;
  }
}

/* voice */
.voice {
  padding: 60px 0 100px;
  padding: 3.75rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 1.25rem 0 2.5rem;
  }
}

.voice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .voice__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.voice__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 0.625rem;
}

.voice__card-img img {
  border-radius: 0.625rem 0.625rem 0 0;
}

.voice__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 25px 30px;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .voice__card-body {
    padding: 1.5625rem 1.25rem;
  }
}

.voice__card-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .voice__card-text {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
}

.voice__card-year {
  text-align: right;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .voice__card-year {
    margin-top: 1.25rem;
  }
}
.voice__card-year span {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #09A7EE;
  border-radius: 1.0625rem;
  padding: 5px 22px;
  padding: 0.3125rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .voice__card-year span {
    font-size: 0.9375rem;
  }
}

.voice__card-name {
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .voice__card-name {
    font-size: 0.9375rem;
  }
}

/* worries */
.worries {
  padding: 60px 0 40px;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .worries {
    padding-bottom: 1.25rem;
  }
}

.worries__units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  gap: 0.875rem 2.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .worries__units {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.worries__unit {
  background: #E8F6F8;
  border-radius: 0.625rem;
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .worries__unit {
    padding: 1.875rem 1.25rem;
  }
}

.worries__unit-title {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #09A7EE;
  letter-spacing: 0.08em;
  background: url(../img/municipality/worries-border.png) no-repeat center bottom/contain;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .worries__unit-title {
    font-size: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.worries__unit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  gap: 1.75rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .worries__unit-inner {
    display: block;
  }
}

.worries__unit-icon {
  width: 110px;
  width: 6.875rem;
  min-width: 110px;
  min-width: 6.875rem;
}
@media screen and (max-width: 767px) {
  .worries__unit-icon {
    width: 6.25rem;
    min-width: unset;
    max-width: 100%;
    margin: 0 auto;
  }
}

.worries__unit-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .worries__unit-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.worries__subtitle {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #09A7EE;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .worries__subtitle {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}

.worries__text {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.46;
  letter-spacing: 0.08em;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-bottom: 140px;
  padding-bottom: 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worries__text {
    text-align: left;
    font-size: 0.9375rem;
    padding-bottom: 4.375rem;
  }
}
.worries__text::after {
  position: absolute;
  content: "";
  width: 420px;
  width: 26.25rem;
  height: 80px;
  height: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../img/municipality/worries-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .worries__text::after {
    width: 13.125rem;
    height: 2.5rem;
  }
}

/* top-about */
.top-about {
  padding-top: 190px;
  padding-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-top: 5rem;
  }
  .top-about .l-inner {
    padding: 0 1.875rem;
  }
}

.top-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    display: block;
  }
}

.top-about__body {
  width: 63%;
}
@media screen and (max-width: 767px) {
  .top-about__body {
    width: 100%;
  }
}

.top-about__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-about__subtitle {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.top-about__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.82;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 1.25rem;
  }
}

.top-about__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-about__btn {
    margin: 1.5625rem auto 0;
  }
}

.top-about__img {
  width: 32%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-about__img {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.top-about__img::before {
  position: absolute;
  content: "";
  width: 223px;
  width: 13.9375rem;
  height: 223px;
  height: 13.9375rem;
  left: -75px;
  left: -4.6875rem;
  bottom: -90px;
  bottom: -5.625rem;
  background: url(../img/common/circle02.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-about__img::before {
    left: -5rem;
    bottom: -4.375rem;
  }
}
.top-about__img img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-about__img img {
    border-radius: 0.3125rem;
  }
}

/* top-business */
.top-business {
  background: #FBFCE6;
  position: relative;
  z-index: 1;
}
.top-business::before {
  position: absolute;
  content: "";
  height: 178px;
  height: 11.125rem;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -65px;
  top: -4.0625rem;
  background: url(../img/common/bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width: 1600px) {
  .top-business::before {
    height: 21.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-business::before {
    height: 5.625rem;
    top: -3.75rem;
  }
}

.top-business__content {
  position: relative;
}
.top-business__content::before, .top-business__content::after {
  position: absolute;
  content: "";
  top: -135px;
  top: -8.4375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-business__content::before, .top-business__content::after {
    top: -3.75rem;
  }
}
.top-business__content::before {
  width: 187px;
  width: 11.6875rem;
  height: 137px;
  height: 8.5625rem;
  left: 100px;
  left: 6.25rem;
  background: url(../img/top/top-business-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-business__content::before {
    width: 4.5rem;
    height: 3.3125rem;
    left: 0.625rem;
  }
}
.top-business__content::after {
  width: 258px;
  width: 16.125rem;
  height: 156px;
  height: 9.75rem;
  right: 85px;
  right: 5.3125rem;
  background: url(../img/top/top-business-icon02.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top-business__content::after {
    width: 4.75rem;
    height: 3.6875rem;
    background: url(../img/top/top-business-icon03.png) no-repeat center/contain;
    right: 0.625rem;
  }
}

.top-business__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-business__item {
    display: block;
    border-radius: 0.3125rem;
  }
}
.top-business__item + .top-business__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-business__item + .top-business__item {
    margin-top: 1.25rem;
  }
}
.top-business__item:nth-child(odd) img {
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-business__item:nth-child(odd) img {
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
}
.top-business__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-business__item:nth-child(even) img {
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .top-business__item:nth-child(even) img {
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
}

.top-business__item-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-business__item-img {
    width: 100%;
  }
}
.top-business__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-business__item-img img {
    height: auto;
  }
}

.top-business__item-body {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
  padding: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-business__item-body {
    width: 100%;
    display: block;
    padding: 1.875rem;
  }
}

.top-business__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  color: #09A7EE;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-business__item-title {
    font-size: 1.25rem;
  }
}

.top-business__item-text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .top-business__item-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.625rem;
  }
}

.btn.top-business__item-btn {
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .btn.top-business__item-btn {
    margin: 1.5625rem auto 0;
  }
}

/* top-facility */
.top-facility {
  background: #FBFCE6;
  padding-top: 140px;
  padding-top: 8.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-facility {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
  .top-facility .l-inner {
    padding: 0 1.875rem;
  }
}
.top-facility::after {
  position: absolute;
  content: "";
  height: 178px;
  height: 11.125rem;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -120px;
  bottom: -7.5rem;
  background: url(../img/common/bg01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width: 1600px) {
  .top-facility::after {
    height: 21.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top-facility::after {
    height: 5.625rem;
    bottom: -3.75rem;
  }
}
.top-facility .title {
  position: relative;
}
.top-facility .title::before, .top-facility .title::after {
  position: absolute;
  content: "";
}
.top-facility .title::before {
  width: 147px;
  width: 9.1875rem;
  height: 147px;
  height: 9.1875rem;
  right: 0;
  top: -80px;
  top: -5rem;
  background: url(../img/common/circle02.png) no-repeat center/contain;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-facility .title::before {
    width: 4.5625rem;
    height: 4.5625rem;
    right: -0.625rem;
    top: -1.875rem;
  }
}
.top-facility .title::after {
  width: 162px;
  width: 10.125rem;
  height: 121px;
  height: 7.5625rem;
  top: -33px;
  top: -2.0625rem;
  right: 42px;
  right: 2.625rem;
  background: url(../img/top/top-facility-icon.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-facility .title::after {
    width: 3.5625rem;
    height: 2.6875rem;
    top: 0.6875rem;
    right: 0.625rem;
  }
}

.top-facility__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-facility__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
  }
}

.top-facility__item-img img {
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-facility__item-img img {
    border-radius: 0.3125rem;
  }
}

.top-facility__item-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-facility__item-title {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.top-facility__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-facility__item-text {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
  }
}

.top-facility__item-btn {
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-facility__item-btn {
    margin-top: 1.75rem;
  }
}

/* top-mv */
.top-mv {
  position: relative;
}

.top-mv__slider {
  display: none;
}
.top-mv__slider.slick-initialized {
  display: block;
}
.top-mv__slider img {
  max-height: 830px;
  max-height: 51.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 767px) {
  .top-mv__slider img {
    min-height: 37.5rem;
  }
}

.top-mv__texts {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  padding-top: 155px;
  padding-top: 9.6875rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__texts {
    padding-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__texts {
    padding-top: 4.0625rem;
    padding-left: 0.625rem;
  }
}

.top-mv__title {
  font-size: 58px;
  font-size: 3.625rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.125rem;
    line-height: 1.44;
  }
}
.top-mv__title span {
  font-size: 51px;
  font-size: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    font-size: 1.875rem;
  }
}

.top-mv__text {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.82;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0.9375rem;
  }
}

/* top-news */
.top-news {
  padding: 70px 0 135px;
  padding: 4.375rem 0 8.4375rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 1.5625rem 0 5.9375rem;
  }
}
.top-news .title {
  text-align: left;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.top-news .title::before {
  position: absolute;
  content: "";
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  left: -60px;
  left: -3.75rem;
  top: -20px;
  top: -1.25rem;
  background: url(../img/common/circle01.png) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-news .title::before {
    width: 8.75rem;
    height: 8.75rem;
    left: -3.125rem;
    top: -2.5rem;
  }
}

.top-news__btn {
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-news__btn {
    margin-top: 1.25rem;
  }
}

/* top-slider */
.top-slider {
  background: #09A7EE;
  border-radius: 1.875rem;
  padding: 50px 0 40px;
  padding: 3.125rem 0 2.5rem;
  margin-top: -30px;
  margin-top: -1.875rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-slider {
    border-radius: 0.9375rem;
    padding: 1.5625rem 0 1.25rem;
  }
}

.top-slider__items {
  display: none;
}
.top-slider__items.slick-initialized {
  display: block;
}

.top-slider__item {
  margin: 0 12px;
  margin: 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-slider__item {
    margin: 0 0.375rem;
  }
}

.top-slider__item-inner {
  display: block;
}
.top-slider__item-inner img {
  border-radius: 0.3125rem;
}

.top-slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-slider__nav {
    margin-top: 1.25rem;
    gap: 0 0.9375rem;
  }
}
.top-slider__nav .slide-arrow {
  display: block;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .top-slider__nav .slide-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.top-slider__nav .prev-arrow {
  background: url(../img/common/prev-icon.png) no-repeat center/contain;
}
.top-slider__nav .next-arrow {
  background: url(../img/common/next-icon.png) no-repeat center/contain;
}
.top-slider__nav .slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-slider__nav .slide-dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  gap: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-slider__nav .slide-dots ul {
    gap: 0 0.9375rem;
  }
}
.top-slider__nav .slide-dots li {
  display: inline-block;
  background: #fff;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top-slider__nav .slide-dots li {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.top-slider__nav .slide-dots li button {
  text-indent: -9999px;
}
.top-slider__nav .slide-dots li.slick-active {
  background: #FFF03E;
}
/*# sourceMappingURL=style.css.map */
