@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    width: 100%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.75;
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 4.1025641026vw;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  font-style: normal;
  letter-spacing: 0.05em;
}

* {
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
  a:hover {
    opacity: 0.7;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main {
  display: block;
  overflow: hidden;
}

strong {
  font-weight: 700;
}

a {
  color: var(--black);
  text-decoration: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/* color */
:root {
  /* 基本カラー */
  --black: #000;
  --white: #fff;
  --gray: #F0F0F0;
  --red: #E7340C;
  --blue: #DFE9F4;
}

/* text */
:root {
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  --align-left: left;
  --align-center: center;
  --align-right: right;
}

body {
  background: #fff;
}

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

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.tac,
.tac * {
  text-align: center;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
}

.wrap {
  max-width: 120rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .wrap {
    width: 92.3076923077vw;
  }
}

.flex {
  display: flex;
}

main {
  overflow: hidden;
}

.title02.en {
  margin-bottom: 3rem;
  font-size: 4rem;
  font-weight: var(--font-weight-medium);
  font-style: italic;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .title02.en {
    margin-bottom: 2.5vw;
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .title02.en {
    margin-bottom: 5.1282051282vw;
    font-size: 9.2307692308vw;
  }
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17rem;
  height: 4.5rem;
  margin: auto;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 1200px) {
  .btn a {
    width: 14.1666666667vw;
    height: 3.75vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .btn a {
    width: 43.5897435897vw;
    height: 11.5384615385vw;
    font-size: 4.1025641026vw;
  }
}

#footer .footer_top {
  padding: 1.8rem 0;
  background: var(--black);
}
@media screen and (max-width: 1200px) {
  #footer .footer_top {
    padding: 1.5vw 0;
  }
}
@media screen and (max-width: 750px) {
  #footer .footer_top {
    padding: 4.6153846154vw 0;
  }
}
#footer .footer_top .sns {
  display: flex;
  justify-content: center;
}
#footer .footer_top .sns li {
  width: 5.5rem;
}
@media screen and (max-width: 1200px) {
  #footer .footer_top .sns li {
    width: 4.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #footer .footer_top .sns li {
    width: 14.1025641026vw;
  }
}
#footer .footer_bottom {
  padding: 3.3rem 0;
  background: #222;
}
@media screen and (max-width: 1200px) {
  #footer .footer_bottom {
    padding: 2.75vw 0;
  }
}
@media screen and (max-width: 750px) {
  #footer .footer_bottom {
    padding: 8.4615384615vw 0;
  }
}
#footer .footer_bottom .copy {
  color: var(--white);
  text-align: var(--align-center);
}

body.fixed {
  height: 100vh;
  overflow: hidden;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 14.4rem;
  background: var(--white);
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  #header {
    height: 12vw;
  }
}
@media screen and (max-width: 750px) {
  #header {
    height: 25.641025641vw;
  }
}
#header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#header .logo {
  width: 16.8rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1200px) {
  #header .logo {
    width: 14vw;
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .logo {
    width: 26.4102564103vw;
  }
}
#header .logo a {
  display: block;
}
#header .menu_area {
  position: relative;
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 9.2307692308vw;
    height: 5.641025641vw;
    margin-top: 8.4615384615vw;
    cursor: pointer;
    z-index: 15;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle span {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.2rem;
    margin: auto;
    background: #001c3c;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle span:nth-of-type(1) {
    top: 0;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle span:nth-of-type(3) {
    bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle.active span:nth-of-type(1) {
    transform: translateY(2.3076923077vw) rotate(150deg);
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .toggle.active span:nth-of-type(3) {
    top: 0;
    bottom: auto;
    transform: translateY(0.9rem) rotate(-150deg);
  }
}
#header .menu_area .menu_area_ig {
  position: absolute;
  top: 0.7rem;
  right: 22.4rem;
  width: 3.2rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area .menu_area_ig {
    top: 0.5833333333vw;
    right: 18.6666666667vw;
    width: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area .menu_area_ig {
    top: 7.1794871795vw;
    right: 15.3846153846vw;
    width: 8.2051282051vw;
  }
}
#header .menu_area #menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area #menu {
    gap: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu {
    position: fixed;
    top: 25.641025641vw;
    right: 0;
    display: none;
    width: 100vw;
    padding: 5.1282051282vw 0 15%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu.on {
    display: block;
    opacity: 1;
  }
}
#header .menu_area #menu .btn_reservation a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 20rem;
  height: 4.6rem;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--red);
  border-radius: 1rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area #menu .btn_reservation a {
    gap: 1.25vw;
    width: 16.6666666667vw;
    height: 3.8333333333vw;
    font-size: 1.3333333333vw;
    border-radius: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu .btn_reservation a {
    gap: 3.8461538462vw;
    width: 51.2820512821vw;
    height: 11.7948717949vw;
    margin: auto;
    font-size: 4.1025641026vw;
    border-radius: 2.5641025641vw;
  }
}
#header .menu_area #menu .btn_reservation a img {
  width: 2.75rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area #menu .btn_reservation a img {
    width: 2.2916666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu .btn_reservation a img {
    width: 6.4102564103vw;
  }
}
#header .menu_area #menu nav {
  width: 100%;
}
#header .menu_area #menu nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area #menu nav ul {
    gap: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu nav ul {
    flex-wrap: wrap;
    gap: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}
#header .menu_area #menu nav ul li {
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  #header .menu_area #menu nav ul li {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #header .menu_area #menu nav ul li {
    width: 100%;
    font-size: 5.1282051282vw;
    text-align: center;
  }
}
#header .menu_area #menu nav ul li a {
  font-weight: var(--font-weight-medium);
  font-style: italic;
}

main {
  margin-top: 17rem;
}
@media screen and (max-width: 1200px) {
  main {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  main {
    margin-top: 25.641025641vw;
  }
}

#fv {
  margin-bottom: 10rem;
}
@media screen and (max-width: 1200px) {
  #fv {
    margin-bottom: 8.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #fv {
    margin-bottom: 12.8205128205vw;
  }
}
@media screen and (max-width: 750px) {
  #fv .wrap {
    width: 100%;
  }
}

#concept {
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #concept {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #concept {
    padding: 12.8205128205vw 0;
  }
}
#concept .first_image {
  max-width: 109rem;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 1200px) {
  #concept .first_image {
    margin: 0 auto 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .first_image {
    margin: 0 auto 1.2820512821vw;
  }
}
#concept .g_box {
  padding: 3rem 0 2.8rem;
  background: var(--gray);
}
@media screen and (max-width: 1200px) {
  #concept .g_box {
    padding: 2.5vw 0 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box {
    padding: 5.1282051282vw 0;
  }
}
#concept .g_box .first_txt {
  position: relative;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
  padding-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  #concept .g_box .first_txt {
    font-size: 2vw;
    padding-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box .first_txt {
    font-size: 5.641025641vw;
    padding-bottom: 1.2820512821vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box .first_txt span {
    display: block;
    width: 79.4871794872vw;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box .first_txt span.red {
    border-bottom: 1.5384615385vw solid var(--red);
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box .first_txt span.black {
    border-bottom: 1.5384615385vw solid var(--black);
  }
}
#concept .g_box .first_txt:before, #concept .g_box .first_txt:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 37.5rem;
  height: 0.6rem;
}
@media screen and (max-width: 1200px) {
  #concept .g_box .first_txt:before, #concept .g_box .first_txt:after {
    right: calc(50% + 0.2083333333vw);
    width: 31.25vw;
    height: 0.5vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box .first_txt:before, #concept .g_box .first_txt:after {
    display: none;
  }
}
#concept .g_box .first_txt:before {
  right: calc(50% + 0.25rem);
  background: var(--red);
}
#concept .g_box .first_txt:after {
  left: calc(50% + 0.25rem);
  background: var(--black);
}
#concept .g_box p {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #concept .g_box p {
    margin-top: 0.8333333333vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .g_box p {
    margin-top: 2.0512820513vw;
    font-size: 4.1025641026vw;
  }
}
#concept .circle_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
  margin: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #concept .circle_wrap {
    gap: 5vw;
    margin: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #concept .circle_wrap {
    gap: 7.6923076923vw;
    margin: 12.8205128205vw 0;
  }
}
#concept .circle_wrap .circle {
  width: 27rem;
  padding-top: 2rem;
  aspect-ratio: 1/1;
  border: 0.2rem solid var(--red);
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  #concept .circle_wrap .circle {
    width: 22.5vw;
    padding-top: 1.6666666667vw;
    border: 0.1666666667vw solid var(--red);
  }
}
@media screen and (max-width: 750px) {
  #concept .circle_wrap .circle {
    width: 69.2307692308vw;
    padding-top: 6.1538461538vw;
    border: 0.5128205128vw solid var(--red);
  }
}
#concept .circle_wrap .circle .number {
  font-size: 6rem;
  color: var(--red);
  font-weight: var(--font-weight-medium);
  text-align: var(--align-center);
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #concept .circle_wrap .circle .number {
    font-size: 5vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .circle_wrap .circle .number {
    font-size: 15.3846153846vw;
  }
}
#concept .circle_wrap .circle .color_g {
  font-size: 1.8rem;
  color: #ccc;
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #concept .circle_wrap .circle .color_g {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .circle_wrap .circle .color_g {
    font-size: 4.6153846154vw;
  }
}
#concept .circle_wrap .circle .title03 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--red);
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #concept .circle_wrap .circle .title03 {
    margin-bottom: 0.8333333333vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #concept .circle_wrap .circle .title03 {
    margin-bottom: 2.5641025641vw;
    font-size: 5.641025641vw;
  }
}
#concept .circle_wrap .circle p {
  text-align: var(--align-center);
  line-height: 1.5;
}
#concept .center_txt p {
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
#concept .center_txt p span {
  background: rgba(231, 52, 12, 0.3);
}

#instructors {
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #instructors {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #instructors {
    padding: 12.8205128205vw 0;
  }
}
#instructors .g_box {
  padding: 4rem 0 3rem;
  margin-bottom: 4rem;
  background: var(--gray);
}
@media screen and (max-width: 1200px) {
  #instructors .g_box {
    padding: 3.3333333333vw 0 2.5vw;
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box {
    padding: 7.6923076923vw 0;
    margin-bottom: 7.6923076923vw;
  }
}
#instructors .g_box .flex {
  justify-content: space-between;
  max-width: 108.2rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 1200px) {
  #instructors .g_box .flex {
    margin: 0 auto 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex {
    flex-wrap: wrap;
    margin: 0 auto 5.1282051282vw;
  }
}
#instructors .g_box .flex figure {
  max-width: 36.7rem;
  width: 33.9186691312%;
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex figure {
    max-width: none;
    width: 76.9230769231vw;
    margin: 0 auto 3.8461538462vw;
  }
}
#instructors .g_box .flex .in {
  max-width: 65.2rem;
  width: 60.258780037%;
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex .in {
    max-width: none;
    width: 100%;
  }
}
#instructors .g_box .flex .in .name_area {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 1200px) {
  #instructors .g_box .flex .in .name_area {
    gap: 1.25vw;
    margin-bottom: 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex .in .name_area {
    display: block;
    margin-bottom: 5.1282051282vw;
  }
}
#instructors .g_box .flex .in .name_area .name {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  #instructors .g_box .flex .in .name_area .name {
    font-size: 2vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex .in .name_area .name {
    font-size: 5.1282051282vw;
  }
}
#instructors .g_box .flex .in .name_area .name span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  #instructors .g_box .flex .in .name_area .name span {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex .in .name_area .name span {
    font-size: 4.1025641026vw;
  }
}
#instructors .g_box .flex .in .name_area p {
  letter-spacing: 0.01em;
  text-align: var(--align-center);
}
#instructors .g_box .flex .in .title03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: var(--font-weight-regular);
  background: #5C5C5C;
}
@media screen and (max-width: 1200px) {
  #instructors .g_box .flex .in .title03 {
    width: 8.3333333333vw;
    height: 2vw;
    margin-bottom: 0.6666666667vw;
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .g_box .flex .in .title03 {
    width: 25.641025641vw;
    height: 6.1538461538vw;
    margin-bottom: 2.5641025641vw;
    font-size: 3.5897435897vw;
  }
}
#instructors .g_box .fwb {
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 750px) {
  #instructors .g_box .fwb {
    text-align: var(--align-left);
  }
}
#instructors .record {
  margin-bottom: 0.8rem;
  text-align: center;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 1200px) {
  #instructors .record {
    margin-bottom: 0.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .record {
    margin-bottom: 5.1282051282vw;
  }
}
#instructors .record .red {
  margin-left: 0.5em;
  color: var(--red);
}
@media screen and (max-width: 750px) {
  #instructors .record .red p {
    font-size: 3.8461538462vw;
  }
}
#instructors .record .red .fsl {
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  #instructors .record .red .fsl {
    font-size: 2vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .record .red .fsl {
    font-size: 5.8974358974vw;
  }
}
#instructors .center_txt {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  #instructors .center_txt {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .center_txt {
    margin-bottom: 5.1282051282vw;
  }
}
#instructors .center_txt p {
  text-align: var(--align-center);
}
@media screen and (max-width: 750px) {
  #instructors .center_txt p {
    text-align: var(--align-left);
  }
}
#instructors .b_box {
  padding: 5rem 0 3rem;
  margin-top: 3.5rem;
  background: var(--blue);
}
@media screen and (max-width: 1200px) {
  #instructors .b_box {
    padding: 4.1666666667vw 0 2.5vw;
    margin-top: 2.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box {
    padding: 7.6923076923vw 0 12.8205128205vw;
    margin-top: 12.8205128205vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .wrap {
    width: 94.8717948718vw;
  }
}
#instructors .b_box .title03 {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .title03 {
    margin-bottom: 2.5vw;
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .title03 {
    margin-bottom: 3.8461538462vw;
    font-size: 5.1282051282vw;
  }
}
#instructors .b_box .r_box {
  padding: 3rem 3rem 2.3rem 5rem;
  background: var(--white);
  border: 0.2rem solid var(--red);
  border-radius: 3rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box {
    padding: 2.5vw 2.5vw 1.9166666667vw 4.1666666667vw;
    border: 0.1666666667vw solid var(--red);
    border-radius: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box {
    padding: 7.6923076923vw 5.1282051282vw;
    border: 0.5128205128vw solid var(--red);
    border-radius: 7.6923076923vw;
  }
}
#instructors .b_box .r_box + .r_box {
  margin-top: 5rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box + .r_box {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box + .r_box {
    margin-top: 7.6923076923vw;
  }
}
#instructors .b_box .r_box:nth-child(odd) .flex {
  flex-direction: row-reverse;
}
#instructors .b_box .r_box .flex {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .flex {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .flex {
    flex-wrap: wrap;
    gap: 5.1282051282vw;
    margin-bottom: 5.1282051282vw;
  }
}
#instructors .b_box .r_box .flex .in {
  max-width: 60.6rem;
  width: 55.5963302752%;
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .flex .in {
    max-width: none;
    width: 100%;
  }
}
#instructors .b_box .r_box .flex .in .title04 {
  margin-bottom: 2.2rem;
  font-size: 2.8rem;
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .flex .in .title04 {
    margin-bottom: 1.8333333333vw;
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .flex .in .title04 {
    margin-bottom: 7.6923076923vw;
    font-size: 5.1282051282vw;
  }
}
#instructors .b_box .r_box .flex .in .txt p .fwb {
  font-weight: var(--font-weight-bold);
}
#instructors .b_box .r_box .flex figure {
  max-width: 41.4rem;
  width: 37.9816513761%;
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .flex figure {
    max-width: none;
    width: 100%;
  }
}
#instructors .b_box .r_box .bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .bottom {
    gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .bottom {
    align-items: flex-start;
    gap: 2.5641025641vw;
  }
}
#instructors .b_box .r_box .bottom img {
  width: 4rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .bottom img {
    width: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .bottom img {
    width: 10.2564102564vw;
  }
}
#instructors .b_box .r_box .bottom .txt {
  width: calc(100% - 1rem - 4rem);
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .bottom .txt {
    width: calc(100% - 0.8333333333vw - 3.3333333333vw);
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .bottom .txt {
    width: calc(100% - 2.5641025641vw - 10.2564102564vw);
    margin-top: 4.1025641026vw;
  }
}
#instructors .b_box .r_box .bottom .txt .red {
  color: var(--red);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .bottom .txt .red {
    line-height: 1.5;
  }
}
#instructors .b_box .r_box .bottom .txt .red + p {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .r_box .bottom .txt .red + p {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .r_box .bottom .txt .red + p {
    margin-top: 2.5641025641vw;
    font-size: 3.5897435897vw;
  }
}
#instructors .b_box .fwb {
  margin-top: 3rem;
  font-weight: var(--font-weight-bold);
  text-align: var(--align-center);
}
@media screen and (max-width: 1200px) {
  #instructors .b_box .fwb {
    margin-top: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #instructors .b_box .fwb {
    margin-top: 7.6923076923vw;
    text-align: var(--align-left);
  }
}

#price {
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #price {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #price {
    padding: 12.8205128205vw 0;
  }
}
@media screen and (max-width: 750px) {
  #price .wrap {
    width: 94.8717948718vw;
  }
}
#price .flex {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6rem 0;
}
@media screen and (max-width: 1200px) {
  #price .flex {
    gap: 5vw 0;
  }
}
@media screen and (max-width: 750px) {
  #price .flex {
    display: block;
  }
}
#price .flex .in {
  width: calc((100% - 8rem) / 2);
}
@media screen and (max-width: 1200px) {
  #price .flex .in {
    width: calc((100% - 6.6666666667vw) / 2);
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in + .in {
    padding-top: 12.8205128205vw;
    margin-top: 12.8205128205vw;
    border-top: 0.1rem solid #ccc;
  }
}
#price .flex .in figure {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in figure {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in figure {
    margin-bottom: 2.5641025641vw;
  }
}
#price .flex .in .title03 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: var(--align-center);
  font-weight: var(--font-weight-regular);
  line-height: 1.45;
}
@media screen and (max-width: 1200px) {
  #price .flex .in .title03 {
    margin-bottom: 1.25vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in .title03 {
    margin-bottom: 3.8461538462vw;
    font-size: 5.1282051282vw;
  }
}
#price .flex .in .title03 span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in .title03 span {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in .title03 span {
    font-size: 4.1025641026vw;
  }
}
#price .flex .in dl {
  display: flex;
}
#price .flex .in dl + dl {
  margin-top: 0.2rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in dl + dl {
    margin-top: 0.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in dl + dl {
    margin-top: 0.5128205128vw;
  }
}
#price .flex .in dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.5rem;
  height: 4.5rem;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 1200px) {
  #price .flex .in dl dt {
    width: 13.75vw;
    height: 3.75vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in dl dt {
    width: 28.2051282051vw;
    height: 11.5384615385vw;
    font-size: 4.1025641026vw;
  }
}
#price .flex .in dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 16.5rem);
  height: 4.5rem;
  font-size: 1.6rem;
  background: #ddd;
}
@media screen and (max-width: 1200px) {
  #price .flex .in dl dd {
    width: calc(100% - 13.75vw);
    height: 3.75vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in dl dd {
    width: calc(100% - 28.2051282051vw);
    height: 11.5384615385vw;
    font-size: 4.1025641026vw;
  }
}
#price .flex .in dl dd span {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in dl dd span {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in dl dd span {
    font-size: 3.5897435897vw;
  }
}
#price .flex .in .title04 {
  padding: 0.5rem 1.4rem;
  margin: 3rem 0 0.5rem;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: var(--font-weight-regular);
  background: var(--red);
}
@media screen and (max-width: 1200px) {
  #price .flex .in .title04 {
    padding: 0.4166666667vw 1.1666666667vw;
    margin: 2.5vw 0 0.4166666667vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in .title04 {
    padding: 1.2820512821vw 3.5897435897vw;
    margin: 5.1282051282vw 0 2.5641025641vw;
    font-size: 4.1025641026vw;
  }
}
#price .flex .in .txt {
  padding: 0 1.5rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in .txt {
    padding: 0 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in .txt {
    padding: 0 1.2820512821vw;
  }
}
#price .flex .in .txt ul li {
  position: relative;
  padding: 0 0 0 1em;
}
#price .flex .in .txt ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#price .flex .in .txt ol li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #price .flex .in .txt ol li + li {
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #price .flex .in .txt ol li + li {
    margin-top: 1.2820512821vw;
  }
}

#news {
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #news {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #news {
    padding: 12.8205128205vw 0;
  }
}
#news .article_list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  #news .article_list {
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list {
    margin-bottom: 7.6923076923vw;
  }
}
#news .article_list .article_list_content {
  padding: 3rem 0;
  border-top: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content {
    padding: 2.5vw 0;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content {
    padding: 12.8205128205vw 0;
  }
}
#news .article_list .article_list_content + .article_list_content {
  border-top: none;
}
#news .article_list .article_list_content a {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a {
    flex-wrap: wrap;
    gap: 3.8461538462vw;
  }
}
#news .article_list .article_list_content a figure {
  width: 30rem;
  height: 16rem;
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content a figure {
    width: 25vw;
    height: 13.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a figure {
    width: 100%;
    height: auto;
    aspect-ratio: 300/160;
  }
}
#news .article_list .article_list_content a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#news .article_list .article_list_content a .in {
  width: calc(100% - 4rem - 30rem);
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content a .in {
    width: calc(100% - 3.3333333333vw - 25vw);
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a .in {
    width: 100%;
  }
}
#news .article_list .article_list_content a .in .cat {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--red);
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content a .in .cat {
    margin-bottom: 0.4166666667vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a .in .cat {
    margin-bottom: 1.2820512821vw;
    font-size: 3.0769230769vw;
  }
}
#news .article_list .article_list_content a .in .title03 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-regular);
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content a .in .title03 {
    margin-bottom: 0.4166666667vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a .in .title03 {
    margin-bottom: 1.2820512821vw;
    font-size: 4.6153846154vw;
  }
}
#news .article_list .article_list_content a .in .date {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  #news .article_list .article_list_content a .in .date {
    margin-bottom: 1vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 750px) {
  #news .article_list .article_list_content a .in .date {
    margin-bottom: 5.1282051282vw;
    font-size: 3.0769230769vw;
  }
}

#access {
  padding: 5rem 0;
}
@media screen and (max-width: 1200px) {
  #access {
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 750px) {
  #access {
    padding: 12.8205128205vw 0;
  }
}
#access .flex {
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  #access .flex {
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #access .flex {
    flex-wrap: wrap;
    gap: 3.8461538462vw;
    margin-bottom: 7.6923076923vw;
  }
}
#access .flex .map {
  max-width: 84.4rem;
  width: 70.3333333333%;
}
@media screen and (max-width: 750px) {
  #access .flex .map {
    max-width: none;
    width: 100%;
  }
}
#access .flex .map iframe {
  width: 100%;
  aspect-ratio: 1/0.4146919431;
  border: none;
}
@media screen and (max-width: 750px) {
  #access .flex .map iframe {
    aspect-ratio: 1/1;
  }
}
#access .flex figure {
  max-width: 32.6rem;
  width: 27.1666666667%;
}
@media screen and (max-width: 750px) {
  #access .flex figure {
    max-width: none;
    width: 46.1538461538vw;
  }
}
#access p + dl {
  margin-top: 2rem;
}
@media screen and (max-width: 1200px) {
  #access p + dl {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #access p + dl {
    margin-top: 5.1282051282vw;
  }
}
#access dl {
  display: flex;
}
@media screen and (max-width: 750px) {
  #access dl {
    flex-wrap: wrap;
  }
}
#access dl dt {
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 750px) {
  #access dl dt {
    width: 100%;
  }
}
#access dl dt .pc {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  #access dl dd {
    width: 100%;
  }
}
#access dl dd span {
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  #access dl dd span {
    font-size: 1.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #access dl dd span {
    display: block;
    width: 100%;
    font-size: 3.3333333333vw;
  }
}

#contact {
  padding: 5rem 0 19rem;
}
@media screen and (max-width: 1200px) {
  #contact {
    padding: 4.1666666667vw 0 15.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #contact {
    padding: 12.8205128205vw 0 25.641025641vw;
  }
}
#contact .form_content_area {
  max-width: 73rem;
  margin: auto;
}
#contact .form_content_area dl + dl {
  margin-top: 3rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl + dl {
    margin-top: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl + dl {
    margin-top: 7.6923076923vw;
  }
}
#contact .form_content_area dl dt {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dt {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dt {
    margin-bottom: 1.2820512821vw;
  }
}
#contact .form_content_area dl dt .req {
  color: var(--red);
}
#contact .form_content_area dl dd .flex {
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd .flex {
    gap: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd .flex {
    gap: 5.1282051282vw;
  }
}
#contact .form_content_area dl dd input {
  width: 100%;
  height: 5.4rem;
  padding: 2rem 1rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.75;
  background: #F8F8F8;
  border: 0.1rem solid #999;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd input {
    height: 4.5vw;
    padding: 1.6666666667vw 0.8333333333vw;
    font-size: 1.3333333333vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd input {
    height: 11.7948717949vw;
    padding: 5.1282051282vw 2.5641025641vw;
    font-size: 4.1025641026vw;
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area dl dd input.half {
  max-width: 35rem;
}
#contact .form_content_area dl dd textarea {
  width: 100%;
  height: 28.5rem;
  padding: 2rem 1rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.75;
  resize: none;
  font-family: "Noto Sans JP", sans-serif;
  background: #F8F8F8;
  border: 0.1rem solid #999;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd textarea {
    height: 23.75vw;
    padding: 1.6666666667vw 0.8333333333vw;
    font-size: 1.3333333333vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd textarea {
    height: 73.0769230769vw;
    padding: 5.1282051282vw 2.5641025641vw;
    font-size: 4.1025641026vw;
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area dl dd.radio .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd.radio .wpcf7-radio {
    gap: 4vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd.radio .wpcf7-radio {
    gap: 10.2564102564vw;
  }
}
#contact .form_content_area dl dd.radio .wpcf7-list-item {
  margin: 0;
}
#contact .form_content_area dl dd.radio label {
  position: relative;
  padding-left: 4.2rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd.radio label {
    padding-left: 3.5vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd.radio label {
    padding-left: 10.7692307692vw;
  }
}
#contact .form_content_area dl dd.radio label input {
  width: 0;
  height: 0;
  padding: 0;
  font-size: 0;
  background: none;
  border: none;
}
#contact .form_content_area dl dd.radio label .wpcf7-list-item-label::before, #contact .form_content_area dl dd.radio label .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
}
#contact .form_content_area dl dd.radio label .wpcf7-list-item-label::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  margin: auto;
  background-color: var(--white);
  border: 0.1rem solid #999;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd.radio label .wpcf7-list-item-label::before {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd.radio label .wpcf7-list-item-label::before {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
  }
}
#contact .form_content_area dl dd.radio label .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  width: 1.5rem;
  height: 0.6rem;
  background: none;
  border-bottom: 0.2rem solid var(--red);
  border-left: 0.2rem solid var(--red);
  border-radius: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd.radio label .wpcf7-list-item-label::after {
    top: 0.4166666667vw;
    left: 0.5833333333vw;
    width: 1.25vw;
    height: 0.5vw;
    border-bottom: 0.1666666667vw solid var(--red);
    border-left: 0.1666666667vw solid var(--red);
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd.radio label .wpcf7-list-item-label::after {
    top: 1.2820512821vw;
    left: 1.7948717949vw;
    width: 3.8461538462vw;
    height: 1.5384615385vw;
    border-bottom: 0.5128205128vw solid var(--red);
    border-left: 0.5128205128vw solid var(--red);
  }
}
#contact .form_content_area dl dd.radio label input:checked + span::after {
  opacity: 1;
}
#contact .form_content_area dl dd.radio p {
  margin-top: 1rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area dl dd.radio p {
    margin-top: 0.8333333333vw;
    font-size: 1.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area dl dd.radio p {
    margin-top: 2.5641025641vw;
    font-size: 3.3333333333vw;
  }
}
#contact .form_content_area .privacy {
  margin: 6.4rem 0 4.7rem;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .privacy {
    margin: 5.3333333333vw 0 3.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .privacy {
    margin: 7.6923076923vw 0 12.8205128205vw;
  }
}
#contact .form_content_area .privacy .privacy_box {
  width: 100%;
  height: 15rem;
  padding: 2rem 1rem;
  margin-bottom: 2.5rem;
  border: 0.1rem solid #999;
  border-radius: 0.5rem;
  overflow-y: scroll;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .privacy .privacy_box {
    height: 12.5vw;
    padding: 1.6666666667vw 0.8333333333vw;
    margin-bottom: 2.0833333333vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .privacy .privacy_box {
    height: 38.4615384615vw;
    padding: 5.1282051282vw 2.5641025641vw;
    margin-bottom: 3.3333333333vw;
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area .privacy .privacy_box_check {
  position: relative;
  display: inline-flex;
  align-items: center;
}
#contact .form_content_area .privacy .wpcf7-list-item {
  margin: 0;
}
#contact .form_content_area .privacy label {
  position: relative;
  padding-right: 4.2rem;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .privacy label {
    padding-right: 3.5vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .privacy label {
    padding-right: 10.7692307692vw;
    font-size: 4.1025641026vw;
  }
}
#contact .form_content_area .privacy label input + span::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid #999;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .privacy label input + span::before {
    top: -0.4166666667vw;
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .privacy label input + span::before {
    top: -1.2820512821vw;
    width: 7.6923076923vw;
    height: 7.6923076923vw;
  }
}
#contact .form_content_area .privacy label .req {
  color: var(--red);
}
#contact .form_content_area .privacy label input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3rem;
  right: 0.7rem;
  width: 1.5rem;
  height: 0.6rem;
  background: none;
  border-bottom: 0.2rem solid var(--red);
  border-left: 0.2rem solid var(--red);
  border-radius: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .privacy label input:checked + span::after {
    top: 0.25vw;
    right: 0.5833333333vw;
    width: 1.25vw;
    height: 0.5vw;
    border-bottom: 0.1666666667vw solid var(--red);
    border-left: 0.1666666667vw solid var(--red);
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .privacy label input:checked + span::after {
    top: 0.7692307692vw;
    right: 1.7948717949vw;
    width: 3.8461538462vw;
    height: 1.5384615385vw;
    border-bottom: 0.5128205128vw solid var(--red);
    border-left: 0.5128205128vw solid var(--red);
  }
}
#contact .form_content_area .btn_area {
  position: relative;
}
#contact .form_content_area .btn_area .btn_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5.4rem;
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  background: var(--red);
  border-radius: 0.5rem;
  cursor: pointer;
  transition-duration: 0.3s;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .btn_area .btn_submit {
    height: 4.5vw;
    font-size: 1.3333333333vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .btn_area .btn_submit {
    height: 13.8461538462vw;
    font-size: 4.1025641026vw;
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area .btn_area .btn_submit:disabled {
  background: #ccc;
  border-radius: 0.5rem;
  cursor: auto;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .btn_area .btn_submit:disabled {
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .btn_area .btn_submit:disabled {
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area .btn_area .btn_submit:disabled:hover {
  opacity: 1;
}
#contact .form_content_area .btn_area .btn_submit:hover {
  opacity: 0.7;
}
#contact .form_content_area .btn_area .btn_back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.5rem;
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  background: #ccc;
  border-radius: 0.5rem;
  cursor: pointer;
  transition-duration: 0.3s;
  margin: 2rem 0 0;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .btn_area .btn_back {
    height: 3.75vw;
    font-size: 1.3333333333vw;
    border-radius: 0.4166666667vw;
    margin: 1.6666666667vw 0 0 0;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .btn_area .btn_back {
    height: 11.5384615385vw;
    font-size: 4.1025641026vw;
    border-radius: 1.2820512821vw;
    margin: 5.1282051282vw 0 0 0;
  }
}
#contact .form_content_area .btn_area .btn_back:disabled {
  background: #ccc;
  border-radius: 0.5rem;
  cursor: auto;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .btn_area .btn_back:disabled {
    border-radius: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .btn_area .btn_back:disabled {
    border-radius: 1.2820512821vw;
  }
}
#contact .form_content_area .btn_area .btn_back:disabled:hover {
  opacity: 1;
}
#contact .form_content_area .btn_area .btn_back:hover {
  opacity: 0.7;
}
#contact .form_content_area .btn_area .wpcf7-spinner {
  position: absolute !important;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto !important;
}
@media screen and (max-width: 1200px) {
  #contact .form_content_area .btn_area .wpcf7-spinner {
    bottom: -3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .form_content_area .btn_area .wpcf7-spinner {
    bottom: -10.2564102564vw;
  }
}
#contact .form_content_area .wpcf7-response-output:empty {
  display: none;
}
#contact.confirm .form_content_area .btn_area {
  margin-top: 5rem;
}
@media screen and (max-width: 1200px) {
  #contact.confirm .form_content_area .btn_area {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact.confirm .form_content_area .btn_area {
    margin-top: 12.8205128205vw;
  }
}
#contact .thanks__ttl {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
}
@media screen and (max-width: 1200px) {
  #contact .thanks__ttl {
    font-size: 1.6666666667vw;
    margin: 0 0 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .thanks__ttl {
    font-size: 5.1282051282vw;
    margin: 0 0 5.1282051282vw;
  }
}
#contact .thanks__txt {
  text-align: center;
  margin: 0 0 5rem;
}
@media screen and (max-width: 1200px) {
  #contact .thanks__txt {
    margin: 0 0 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .thanks__txt {
    font-size: 3.5897435897vw;
    margin: 0 0 12.8205128205vw;
    text-align: left;
  }
}

.newslist {
  padding: 0 0 10rem;
}
@media screen and (max-width: 1200px) {
  .newslist {
    padding: 0 0 8.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist {
    padding: 12.8205128205vw 0 25.641025641vw;
  }
}
.newslist .article_list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .newslist .article_list {
    margin-bottom: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list {
    margin-bottom: 7.6923076923vw;
  }
}
.newslist .article_list .article_list_content {
  padding: 3rem 0;
  border-top: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content {
    padding: 2.5vw 0;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content {
    padding: 12.8205128205vw 0;
  }
}
.newslist .article_list .article_list_content + .article_list_content {
  border-top: none;
}
.newslist .article_list .article_list_content a {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a {
    flex-wrap: wrap;
    gap: 3.8461538462vw;
  }
}
.newslist .article_list .article_list_content a figure {
  width: 30rem;
  height: 16rem;
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content a figure {
    width: 25vw;
    height: 13.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a figure {
    width: 100%;
    height: auto;
    aspect-ratio: 300/160;
  }
}
.newslist .article_list .article_list_content a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newslist .article_list .article_list_content a .in {
  width: calc(100% - 4rem - 30rem);
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content a .in {
    width: calc(100% - 3.3333333333vw - 25vw);
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a .in {
    width: 100%;
  }
}
.newslist .article_list .article_list_content a .in .cat {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--red);
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content a .in .cat {
    margin-bottom: 0.4166666667vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a .in .cat {
    margin-bottom: 1.2820512821vw;
    font-size: 3.0769230769vw;
  }
}
.newslist .article_list .article_list_content a .in .title03 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-regular);
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content a .in .title03 {
    margin-bottom: 0.4166666667vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a .in .title03 {
    margin-bottom: 1.2820512821vw;
    font-size: 4.6153846154vw;
  }
}
.newslist .article_list .article_list_content a .in .date {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  .newslist .article_list .article_list_content a .in .date {
    margin-bottom: 1vw;
    font-size: 1vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .article_list .article_list_content a .in .date {
    margin-bottom: 5.1282051282vw;
    font-size: 3.0769230769vw;
  }
}
.newslist .post {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 3rem 0 5rem;
  margin: 0 0 2rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post {
    padding: 2.5vw 0 4.1666666667vw;
    margin: 0 0 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post {
    padding: 7.6923076923vw 0 25.641025641vw;
    margin: 0 0 5.1282051282vw;
  }
}
.newslist .post .inner {
  max-width: 78.5rem;
  margin: 0 auto;
}
.newslist .post .cat {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--red);
}
@media screen and (max-width: 1200px) {
  .newslist .post .cat {
    margin-bottom: 0.4166666667vw;
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .cat {
    margin-bottom: 1.2820512821vw;
    font-size: 3.5897435897vw;
  }
}
.newslist .post .title03 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: var(--font-weight-regular);
}
@media screen and (max-width: 1200px) {
  .newslist .post .title03 {
    margin-bottom: 0.4166666667vw;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .title03 {
    margin-bottom: 1.2820512821vw;
    font-size: 5.1282051282vw;
  }
}
.newslist .post .date {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .date {
    margin-bottom: 1.6666666667vw;
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .date {
    margin-bottom: 5.1282051282vw;
    font-size: 3.5897435897vw;
  }
}
.newslist .post .catch {
  text-align: center;
}
.newslist .post .txt {
  margin: 3rem 0 0;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt {
    margin: 2.5vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt {
    margin: 5.1282051282vw 0 0;
  }
}
.newslist .post .txt h2,
.newslist .post .txt h3,
.newslist .post .txt h4,
.newslist .post .txt h5,
.newslist .post .txt h6 {
  line-height: 1.6;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt h2,
  .newslist .post .txt h3,
  .newslist .post .txt h4,
  .newslist .post .txt h5,
  .newslist .post .txt h6 {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt h2,
  .newslist .post .txt h3,
  .newslist .post .txt h4,
  .newslist .post .txt h5,
  .newslist .post .txt h6 {
    font-size: 5.1282051282vw;
  }
}
.newslist .post .txt * + h1,
.newslist .post .txt * + h2,
.newslist .post .txt * + h3,
.newslist .post .txt * + h4,
.newslist .post .txt * + h5,
.newslist .post .txt * + h6,
.newslist .post .txt * + figure,
.newslist .post .txt * + img,
.newslist .post .txt * + .wp-block-image,
.newslist .post .txt * + .wp-block-embed,
.newslist .post .txt * + p {
  margin-top: 4rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt * + h1,
  .newslist .post .txt * + h2,
  .newslist .post .txt * + h3,
  .newslist .post .txt * + h4,
  .newslist .post .txt * + h5,
  .newslist .post .txt * + h6,
  .newslist .post .txt * + figure,
  .newslist .post .txt * + img,
  .newslist .post .txt * + .wp-block-image,
  .newslist .post .txt * + .wp-block-embed,
  .newslist .post .txt * + p {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt * + h1,
  .newslist .post .txt * + h2,
  .newslist .post .txt * + h3,
  .newslist .post .txt * + h4,
  .newslist .post .txt * + h5,
  .newslist .post .txt * + h6,
  .newslist .post .txt * + figure,
  .newslist .post .txt * + img,
  .newslist .post .txt * + .wp-block-image,
  .newslist .post .txt * + .wp-block-embed,
  .newslist .post .txt * + p {
    margin-top: 10.2564102564vw;
  }
}
.newslist .post .txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newslist .post .txt ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 0 0 0 1em;
  word-break: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt ul li {
    font-size: 1.3333333333vw;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt ul li {
    font-size: 4.1025641026vw;
    margin-top: 1.2820512821vw;
  }
}
.newslist .post .txt ul li:first-child {
  margin-top: 0;
}
.newslist .post .txt ul li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 100%;
  background: #ccc;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt ul li::before {
    top: 1vw;
    width: 0.5833333333vw;
    height: 0.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt ul li::before {
    top: 3.0769230769vw;
    width: 1.7948717949vw;
    height: 1.7948717949vw;
  }
}
.newslist .post .txt ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.newslist .post .txt ol li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.75;
  word-break: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt ol li {
    font-size: 1.3333333333vw;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt ol li {
    font-size: 4.1025641026vw;
    margin-top: 1.2820512821vw;
  }
}
.newslist .post .txt ol li:first-child {
  margin-top: 0;
}
.newslist .post .txt ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.newslist .post .txt * + ul,
.newslist .post .txt * + ol,
.newslist .post .txt * + blockquote {
  margin-top: 2rem;
}
.newslist .post .txt p {
  font-size: 1.6rem;
  line-height: 1.75;
  word-break: normal;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt p {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt p {
    font-size: 4.1025641026vw;
  }
}
.newslist .post .txt img + img,
.newslist .post .txt figure + img,
.newslist .post .txt img + figure,
.newslist .post .txt figure + figure {
  margin-top: 2rem;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt img + img,
  .newslist .post .txt figure + img,
  .newslist .post .txt img + figure,
  .newslist .post .txt figure + figure {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt img + img,
  .newslist .post .txt figure + img,
  .newslist .post .txt img + figure,
  .newslist .post .txt figure + figure {
    margin-top: 5.1282051282vw;
  }
}
.newslist .post .txt strong {
  font-weight: bold;
}
.newslist .post .txt em {
  font-style: italic;
}
.newslist .post .txt blockquote {
  display: block;
  background: #ccc;
  border-radius: 0.5rem;
  padding: 2em;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt blockquote {
    padding: 1.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt blockquote {
    padding: 5.1282051282vw;
  }
}
.newslist .post .txt a {
  position: relative;
  text-decoration: underline;
}
.newslist .post .txt a img {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .newslist .post .txt a:hover {
    text-decoration: none;
    opacity: 1;
  }
  .newslist .post .txt a:hover img {
    opacity: 0.7;
  }
}
.newslist .post .txt .wp-block-embed {
  max-width: 400px;
}
.newslist .post .txt .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 6/3.5;
}
.newslist .post .txt .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .newslist .post .txt .aligncenter img {
    width: 100%;
    height: auto;
  }
}
.newslist .post .txt .alignright {
  float: right;
  margin-left: 2rem;
}
@media screen and (max-width: 750px) {
  .newslist .post .txt .alignright {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .newslist .post .txt .alignright img {
    width: 100%;
    height: auto;
  }
}
.newslist .post .txt .alignleft {
  float: left;
  margin-right: 1.5em;
}
@media screen and (max-width: 750px) {
  .newslist .post .txt .alignleft {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .newslist .post .txt .alignleft img {
    width: 100%;
    height: auto;
  }
}
.newslist .post .txt .wp-block-image {
  overflow: hidden;
}
.newslist .post .txt .wp-element-caption {
  display: block !important;
  width: 100%;
}
.newslist .post .txt img,
.newslist .post .txt img[class*=wp-image-],
.newslist .post .txt img[class*=attachment-] {
  width: auto;
  height: auto;
  max-width: 100%;
}
.newslist .post .txt figcaption {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .newslist .post .txt figcaption {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .txt figcaption {
    font-size: 3.5897435897vw;
  }
}
.newslist .post .txt .size-full {
  width: 100%;
}
.newslist .post .btn {
  margin: 10rem 0 0;
}
@media screen and (max-width: 1200px) {
  .newslist .post .btn {
    margin: 8.3333333333vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  .newslist .post .btn {
    margin: 12.8205128205vw 0 0;
  }
}

.c-tags {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0 4rem;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 1200px) {
  .c-tags {
    gap: 0 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags {
    gap: 3.0769230769vw 7.6923076923vw;
    margin: 0 0 5.1282051282vw;
  }
}
.c-tags__item {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .c-tags__item {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item {
    font-size: 3.5897435897vw;
  }
}
.c-tags__item.is-current {
  position: relative;
  color: #E7340C;
  padding: 0 0 0 1.6rem;
}
@media screen and (max-width: 1200px) {
  .c-tags__item.is-current {
    padding: 0 0 0 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item.is-current {
    padding: 0 0 0 4.1025641026vw;
  }
}
.c-tags__item.is-current::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/icn_tag_current.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1200px) {
  .c-tags__item.is-current::before {
    top: 0.6666666667vw;
    width: 0.9166666667vw;
    height: 0.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item.is-current::before {
    top: 2.0512820513vw;
    width: 2.8205128205vw;
    height: 2.8205128205vw;
  }
}
.c-tags__item a {
  display: block;
  position: relative;
  padding: 0 0 0 1.6rem;
}
@media screen and (max-width: 1200px) {
  .c-tags__item a {
    padding: 0 0 0 1.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item a {
    padding: 0 0 0 4.1025641026vw;
  }
}
.c-tags__item a::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/icn_tag.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 1200px) {
  .c-tags__item a::before {
    top: 0.6666666667vw;
    width: 0.9166666667vw;
    height: 0.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item a::before {
    top: 2.0512820513vw;
    width: 2.8205128205vw;
    height: 2.8205128205vw;
  }
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5rem;
  margin: 4rem 0 0;
}
@media screen and (max-width: 1200px) {
  .c-pager {
    gap: 0 1.25vw;
    margin: 3.3333333333vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  .c-pager {
    gap: 0 0.8rem;
    margin: 4.2rem 0 0;
  }
}
.c-pager .item {
  width: 3.6rem;
  height: 3.6rem;
  line-height: 1;
  font-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .c-pager .item {
    width: 3vw;
    height: 3vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .c-pager .item {
    width: 9.2307692308vw;
    height: 9.2307692308vw;
    font-size: 3.8461538462vw;
  }
}
.c-pager .item.current {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E7340C;
  color: #fff;
  border: 1px solid #E7340C;
  border-radius: 0.5rem;
}
.c-pager .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #CCCCCC;
  color: #666;
  transition: 0.3s;
  border-radius: 0.5rem;
}
.c-pager .item a:hover {
  background: #E7340C;
  color: #fff;
  border: 1px solid #E7340C;
  opacity: 1;
}
.c-pager .item.dot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  letter-spacing: -0.5em;
  text-indent: -0.5em;
}
.c-pager .item.prev, .c-pager .item.next {
  width: 3.6rem;
  height: 3.6rem;
}
@media screen and (max-width: 1200px) {
  .c-pager .item.prev, .c-pager .item.next {
    width: 3vw;
    height: 3vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .c-pager .item.prev, .c-pager .item.next {
    width: 9.2307692308vw;
    height: 9.2307692308vw;
    font-size: 3.8461538462vw;
  }
}
.c-pager .item.prev a, .c-pager .item.next a {
  position: relative;
  width: 100%;
  height: 100%;
}