@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  /* for mozilla: always display scrollbar */
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  font-display: swap;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
table,
th,
td,
tbody,
tfoot,
thead,
object,
iframe,
code,
fieldset,
legend,
caption,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale→ */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  form,
  fieldset,
  input,
  textarea,
  p,
  blockquote,
  table,
  th,
  td,
  tbody,
  tfoot,
  thead,
  object,
  iframe,
  code,
  fieldset,
  legend,
  caption,
  article,
  aside,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section,
  audio,
  video,
  canvas {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
address,
caption,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

table {
  font-size: 1.5rem;
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.5;
}

img,
fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

figure {
  text-align: center;
}

br {
  letter-spacing: normal;
}

img {
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-out;
  display: inline-block;
  color: inherit;
}

/* default */
html {
  font-size: 62.5%;
}

.pc {
  display: none;
}

@media only screen and (min-width: 960px) {
  .sp {
    display: none;
  }
  .pc {
    display: inherit;
  }
}
body {
  background: #fff;
  font-size: 1.6rem;
  color: #23221e;
  font-family: "Roboto", "Arial", "Segoe UI", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
}

.section__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 960px) {
  .section__inner {
    padding: 0 70px;
    max-width: 1360px;
  }
}

a,
a::before,
a::after {
  transition: all 0.25s ease-out;
}

.svg-sns-frame {
  fill: rgba(255, 255, 255, 0);
}

br.sp {
  display: none;
}
@media only screen and (max-width: 559px) {
  br.sp {
    display: inherit;
  }
}

button {
  padding: 0;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.main-contents {
  padding-top: 62px;
}

/* Slickスライダーのちらつき防止 */
.articles__slider:not(.slick-initialized) {
  visibility: hidden;
}

.btn {
  padding: 8px 15px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  border-radius: 3.5em;
  transition: all 0.25s ease-out;
}
.btn.primary {
  color: #fff;
  background: #0cbc9e;
}
.btn.sub {
  color: #0cbc9e;
  background: #fff;
  border: 2px solid #0cbc9e;
}
.btn.pagelink {
  display: flex;
  align-items: center;
  gap: 0.25em;
  padding: 0;
  width: fit-content;
  font-size: 1.3rem;
  color: #0cbc9e;
}
.btn.pagelink .symbol-arrow-right {
  font-size: inherit;
  font-size: 220%;
  font-weight: 100;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.6;
    transform: scale(0.98);
  }
}

.btn-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-area.--center {
  justify-content: center;
}

.section-title__with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.section-title {
  font-size: 2.4rem;
  font-weight: bold;
}
.section-title.--center {
  text-align: center;
}
@media only screen and (min-width: 560px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-sub-title {
  font-size: 2.1rem;
  font-weight: bold;
}
.section-sub-title.--center {
  text-align: center;
}
@media only screen and (min-width: 560px) {
  .section-sub-title {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 560px) and (max-width: 959px) {
  .section-sub-title {
    font-size: 2.4rem;
  }
}

.page-header__title {
  margin-top: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
.page-header__title.has-line {
  position: relative;
  padding-bottom: 0.8em;
}
.page-header__title.has-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.75em;
  height: 6px;
  content: "";
  background: #0cbc9e;
  border-radius: 6px;
}
.page-header.has-bg .page-header__title {
  margin-top: 0;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media only screen and (min-width: 560px) {
  .page-header__title {
    margin-top: 60px;
    font-size: 2.8rem;
  }
}

.card a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
}
.card-img {
  width: 100%;
  aspect-ratio: 1.7804878049;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}
.card-header {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 1.25em;
}
.card-title {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-datetime {
  width: 100%;
  margin-top: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 80%;
  color: #999;
}
.card-datetime .symbol-datetime {
  font-size: inherit;
}
li > .card {
  height: 100%;
}
li.slider-item > .card .card-title {
  height: 2.9em;
}
.card.--side a {
  display: flex;
  gap: 1em;
}
.card.--side .card-body {
  flex: 1;
}
.card.--side .card-title {
  margin-top: 0;
}
@media (hover: hover) {
  .card a:hover {
    opacity: 0.6;
  }
  .card a:hover .card-img img {
    transform: scale(1.08);
  }
}
@media only screen and (min-width: 560px) {
  .card-title {
    font-size: 1.6rem;
  }
}

.has-column {
  margin-top: 20px;
}
.single .has-column {
  margin-top: 30px;
}
.has-column__sidebar {
  margin-top: 60px;
}
@media only screen and (min-width: 560px) {
  .single .has-column {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 960px) {
  .has-column {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px clamp(40px, 6vw, 80px);
  }
  .has-column__main {
    flex: 1;
  }
  .has-column__sidebar {
    margin-top: 0;
    width: 280px;
  }
}

.single-sns__list {
  display: flex;
  gap: 0.5em;
}
.single-sns__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.3em;
  height: 1.3em;
}

.slider__wrapper {
  position: relative;
}

.slider-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow {
  position: relative;
  background: #111;
  border: solid #fff;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.slider-arrow::before, .slider-arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  background: #fff;
}
@media (hover: hover) {
  .slider-arrow.prev-arrow:hover {
    transform: translateX(10px);
  }
}
.slider-arrow.prev-arrow::before {
  transform: rotate(45deg) translateY(-1px);
  transform-origin: 0;
}
.slider-arrow.prev-arrow::after {
  transform: rotate(-45deg) translateY(1px);
  transform-origin: 0;
}
@media (hover: hover) {
  .slider-arrow.next-arrow:hover {
    transform: translateX(-10px);
  }
}
.slider-arrow.next-arrow::before {
  transform: rotate(-45deg) translateY(-1px);
  transform-origin: 100%;
}
.slider-arrow.next-arrow::after {
  transform: rotate(45deg) translateY(1px);
  transform-origin: 100%;
}

.slider__wrapper .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.dots-box {
  margin-top: 20px;
}
.dots-box .dots-wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dots-box .dots-wrap li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background: #ccc;
  color: transparent;
  cursor: pointer;
}
.dots-box .dots-wrap li.slick-active button {
  background: #0cbc9e;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-out;
  z-index: 2;
}

html.side-open {
  overflow: hidden;
}

.side-open .wrapper,
.side-open .overlay {
  transform: translate3d(-300px, 0, 0);
}

/* overlay */
.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.25s ease-out;
  z-index: 3;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}

/* side_menu */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1;
  overflow-y: auto;
  transition: all 0.25s ease-out;
}
.side-open .side-nav {
  right: 0;
}
@media screen and (min-width: 1216px) {
  .side-nav {
    display: none;
  }
}
.side-nav__searchform {
  position: sticky;
  top: 0;
  padding: 10px 80px 10px 10px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 501;
}
.side-nav div:has(.nav_ul) {
  position: relative;
  z-index: 500;
}
.side-nav .nav_ul {
  padding: 1em 0;
}
.side-nav .nav_ul li.has_child {
  margin-bottom: 0.5em;
}
.side-nav .nav_ul li a {
  padding: 0.5em 2.5em 0.5em 15px;
  display: block;
}
.side-nav .nav_ul > li + li {
  margin-top: 0.75em;
  padding-top: 0.75em;
  border-top: 1px solid #e5e5e5;
}
.side-nav .nav_ul > li > a {
  position: relative;
}
.side-nav .nav_ul > li > a[href]::after {
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.4em;
  content: "";
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(-45deg);
}
.side-nav .nav_ul--child {
  padding-left: 15px;
}
.side-nav .nav_ul--child li {
  font-size: 1.3rem;
}
.side-nav .nav_ul--child li a {
  position: relative;
  padding: 0.5em 15px;
}
.side-nav .nav_ul--child li a::before {
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  content: "-";
}
.side-nav__cv-area {
  padding: 1em 15px;
}
.side-nav__cv-area .btn {
  padding: 0.75em 1.5em;
  width: 100%;
}
.side-nav__cv-area .btn + .btn {
  margin-top: 6px;
}

/* humberger_btn */
.side-menu-btn {
  position: fixed;
  top: 14px;
  right: 15px;
  width: 32px;
  height: 32px;
  padding: 5px;
  cursor: pointer;
  z-index: 4;
}
@media (hover: hover) {
  .side-menu-btn:hover .top {
    transform: translateY(-2px);
  }
  .side-menu-btn:hover .bot {
    transform: translateY(2px);
  }
}
@media screen and (min-width: 1216px) {
  .side-menu-btn {
    display: none;
  }
}

.ellipsis-v {
  position: relative;
  display: block;
  cursor: pointer;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  appearance: none;
  outline: none;
}
.ellipsis-v .point {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #333;
  transition: all 0.25s ease-out;
}
.ellipsis-v .point.top {
  top: 0;
}
.ellipsis-v .point.mid {
  top: 0;
  bottom: 0;
}
.ellipsis-v .point.bot {
  bottom: 0;
}

.side-open .side-menu-btn .top {
  width: 30px;
  height: 1px;
  transform-origin: left top;
  transform: rotate(45deg);
}
.side-open .side-menu-btn .mid {
  opacity: 0;
}
.side-open .side-menu-btn .bot {
  width: 30px;
  height: 1px;
  transform-origin: left bottom;
  transform: rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  padding: 10px 20px;
  width: 100%;
  height: 62px;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.header__logo-area {
  display: flex;
  gap: 2vw;
  align-items: center;
}
.header__logo {
  max-width: clamp(180px, 15.3846153846vw, 210px);
  line-height: 1;
}
.header__logo a {
  padding: 8px 0;
}
.header__cv-area {
  display: none;
  align-items: center;
  gap: 4px;
}
.header__cv-area .btn {
  font-size: 1.2rem;
}
.header__search-area {
  display: none;
}
.header__search-area .btn__searchform {
  padding: 7px 8px;
  border-radius: 50%;
}
.header__searchform {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  padding: 1em 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 100%;
  background: #f8f7f6;
  border-bottom: 1px solid #e5e5e5;
  z-index: 299;
}
.header__searchform .searchform__title {
  font-weight: bold;
  line-height: 1;
}
.header__searchform .searchform {
  flex: 1;
  max-width: 800px;
}
.header__searchform .searchform .searchform__inner {
  font-size: 1.8rem;
}
.header__global-nav {
  display: none;
}
.header__global-nav .nav_ul {
  display: flex;
  gap: 1.6vw;
  font-size: clamp(1.2rem, 0.9230769231vw, 1.3rem);
  font-weight: bold;
}
.header__global-nav .nav_ul > .nav_item > a {
  padding: 10px 0;
}
.header__global-nav .nav_ul > .nav_item.has_child {
  position: relative;
}
.header__global-nav .nav_ul > .nav_item.has_child > a {
  position: relative;
}
.header__global-nav .nav_ul > .nav_item.has_child > a::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  content: "";
  background: #0cbc9e;
  opacity: 0;
}
@media (hover: hover) {
  .header__global-nav .nav_ul > .nav_item:hover > a {
    color: #0cbc9e;
  }
  .header__global-nav .nav_ul > .nav_item.has_child:hover > a::after {
    bottom: 0;
    opacity: 1;
  }
}
.header__global-nav .nav_ul--child {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0.75em 0;
  min-width: 140%;
  background: #f5f5f5;
  white-space: nowrap;
  border-radius: 20px;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease-out;
  z-index: 300;
}
.header__global-nav .nav_ul--child .nav_item a {
  padding: 0.75em 1.25em;
}
@media (hover: hover) {
  .header__global-nav .nav_ul--child .nav_item a:hover {
    color: #0cbc9e;
  }
}
@media (hover: hover) {
  .header__global-nav .has_child:hover .nav_ul--child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media only screen and (min-width: 560px) {
  .header {
    padding: 10px clamp(57px, 5.5098684211vw, 72px) 10px 20px;
  }
  .header__cv-area {
    display: flex;
  }
}
@media screen and (min-width: 1216px) {
  .header {
    padding: 10px clamp(40px, 3.2894736842vw, 80px);
  }
  .header__global-nav {
    display: inherit;
  }
  .header__search-area {
    display: inherit;
  }
}

.conversion__item-btn {
  display: block;
  width: 100%;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  border-radius: 3em;
}
.conversion__item-btn.--main {
  padding: 1em;
  max-width: 300px;
  color: #fff;
  font-size: 1.6rem;
  background: #0cbc9e;
}
@media only screen and (min-width: 560px) {
  .conversion__item-btn.--main {
    font-size: 1.8rem;
  }
}

.conversion {
  margin-top: 60px;
  padding: 40px 0;
  background: #f8f7f6;
}
.conversion__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.conversion__item-main a {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .conversion__item-main a:hover {
    transform: scale(0.98);
    opacity: 0.5;
  }
}
.conversion__item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.conversion__item-icon {
  width: 2.75em;
  padding: 10px;
  background: #f3f5f7;
  border-radius: 50%;
}
.conversion__item-text {
  margin-top: 0.75em;
  text-align: center;
}
.conversion .conversion__item-btn {
  margin: 1.25em auto 0;
}
.conversion__item-main {
  width: 100%;
}
.conversion__item-main .conversion__item-title {
  font-size: 2rem;
}
.conversion__item-sub {
  flex: 1;
}
.conversion__item-sub a {
  display: block;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .conversion__item-sub a:hover {
    transform: scale(0.98);
    opacity: 0.5;
  }
}
.conversion__item-sub .conversion__item-btn {
  padding: 0.6em 1em;
  min-width: 150px;
  background: #fff;
  border: solid 2px #333;
}
@media screen and (max-width: 438px) {
  .conversion__item-sub {
    flex: inherit;
    width: 100%;
  }
  .conversion__item-sub .conversion__item-btn {
    margin: 0;
  }
}
@media only screen and (max-width: 559px) {
  .conversion__item-sub .conversion__item-title,
  .conversion__item-sub .conversion__item-text {
    display: none;
  }
  .conversion__item-sub .conversion__item-btn {
    padding: 0.8em 1em;
    font-size: 14px;
  }
}
@media only screen and (min-width: 560px) {
  .conversion {
    margin-top: 80px;
    padding: 60px 0;
  }
  .conversion__list {
    gap: 24px;
  }
  .conversion__item-sub a {
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
  }
  .conversion__item-title {
    gap: 20px;
  }
  .conversion__item-icon {
    width: 2.75em;
  }
  .conversion__item-main .conversion__item-title {
    font-size: 2.6rem;
  }
  .conversion__item-sub .conversion__item-title {
    font-size: 2rem;
  }
  .conversion__item-sub .conversion__item-btn {
    max-width: 150px;
    font-size: 14px;
  }
  .conversion__item-sub.conversion__item-resister .conversion__item-btn {
    max-width: inherit;
    width: fit-content;
  }
}

.footer {
  background: #333;
}
.footer__inner {
  margin: 0 auto;
  padding: 20px 20px;
  width: 100%;
  max-width: 1460px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0.25em 0.75em;
  font-size: 1.4rem;
  color: #fff;
}
.footer-nav li a {
  position: relative;
}
.footer-nav li a::after {
  position: absolute;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: "";
  background: #fff;
  opacity: 0.7;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .footer-nav li a:hover::after {
    width: 100%;
  }
}
.footer-nav li:not(:last-child) {
  border-right: 1px solid #fff;
}
.footer-nav li:not(:last-child) a {
  margin-right: 0.75em;
}
.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
@media (hover: hover) {
  .footer__sns a:hover {
    transform: scale(0.98);
    opacity: 0.5;
  }
}
.footer__sns img {
  width: 26px;
}
.footer .copyright {
  margin-top: 1.25em;
  font-size: 1.2rem;
  color: #fff;
}
@media only screen and (max-width: 559px) {
  .footer__sns {
    margin-top: 1.5em;
  }
  .footer .copyright {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media only screen and (min-width: 560px) {
  .footer__inner {
    padding: 20px;
  }
  .footer__nav-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
  .footer-nav {
    justify-content: left;
    gap: 0.25em 1em;
  }
  .footer-nav li:not(:last-child) a {
    margin-right: 1em;
  }
  .footer__sns {
    justify-content: right;
  }
}

.searchform__inner {
  position: relative;
  padding: 3px 3px 3px 1em;
  font-size: 1.3rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2em;
}
.searchform input[type=text] {
  padding: 0.6em 0.25em;
  width: 100%;
}
.searchform__input {
  width: calc(100% - 3em);
}
.searchform__input input {
  min-width: 150px;
}
.searchform__submit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.2em;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 6px);
  aspect-ratio: 1/1;
  background: #23221e;
  border-radius: 50%;
  transition: all 0.25s ease-out;
}
.searchform__submit .icon {
  font-size: 150%;
  color: #fff;
}
@media (hover: hover) {
  .searchform__submit:hover {
    opacity: 0.6;
  }
}

.search-contents__input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 20px;
}
.search-contents__title {
  font-size: 2.4rem;
  font-weight: bold;
}
.search-contents .searchform {
  width: 100%;
}
.search-contents .tag-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.search-contents .tag-list .tag-item a {
  padding: 0.5em 1em;
  font-size: 1.4rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 2em;
  transition: all 0.25s ease-out;
}
.search-contents .tag-list .tag-item a::before {
  margin-right: 0.25em;
  content: "#";
}
@media (hover: hover) {
  .search-contents .tag-list .tag-item a:hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 560px) {
  .search-contents__title {
    font-size: 2.8rem;
  }
  .search-contents .tag-list {
    margin-top: 30px;
  }
  .search-contents .searchform {
    flex: 1;
  }
  .search-contents .searchform__inner {
    font-size: 1.8rem;
  }
}

.breadcrumb {
  padding: 0.75em 20px 0;
}
.breadcrumb__list {
  list-style: none;
  font-size: 1.2rem;
  color: #555;
}
.breadcrumb__item {
  display: inline-block;
}
.breadcrumb__item a {
  color: #555;
}
.breadcrumb__item:after {
  content: ">";
  display: inline-block;
  margin: 0 4px;
}
.breadcrumb__item:last-of-type:after {
  display: none;
}
@media screen and (min-width: 1216px) {
  .breadcrumb {
    padding: 0.75em clamp(40px, 3.2894736842vw, 80px) 0;
  }
}

.sidebar-contents + .sidebar-contents {
  margin-top: 36px;
}
.sidebar-contents__title {
  margin-bottom: 1em;
  font-weight: bold;
}

.sidebar-bnr .bnr-item a {
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .sidebar-bnr .bnr-item a:hover {
    opacity: 0.6;
  }
}

.sidebar-articles .article-item {
  padding-bottom: 1em;
}
.sidebar-articles .article-item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.sidebar-articles .article-item + .article-item {
  margin-top: 1em;
}
.sidebar-articles .article-item a {
  display: flex;
  gap: 0.75em;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .sidebar-articles .article-item a:hover {
    opacity: 0.6;
  }
}
.sidebar-articles .article-item__img {
  width: 95px;
  aspect-ratio: 1.7804878049;
  overflow: hidden;
}
.sidebar-articles .article-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-articles .article-item__text-contents {
  flex: 1;
}
.sidebar-articles .article-item__title {
  font-size: 1.3rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-articles.ranking-list .article-item a {
  gap: 1em;
}
.sidebar-articles.ranking-list .article-item__num {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  color: #0cbc9e;
}

.sidebar-category {
  padding: 1em;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
}

.category-list {
  font-size: 1.3rem;
}
.category-list a {
  position: relative;
  padding: 0.2em 0;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .category-list a:hover {
    color: #0cbc9e;
  }
}
.category-list .category-item + .category-item {
  margin-top: 0.75em;
  padding-top: 0.75em;
  border-top: 1px solid #e5e5e5;
}
.category-list .category-link {
  font-weight: bold;
}
.category-list .category-link[href] {
  position: relative;
  display: block;
}
.category-list .category-link[href]::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.4em;
  content: "";
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .category-list .category-link[href]:hover::after {
    border-color: #0cbc9e;
  }
}
.category-list .category-children {
  margin-top: 0.25em;
  padding-bottom: 0.75em;
}
.category-list .category-child-link {
  padding-left: 1.25em;
}
.category-list .category-child-link::before {
  position: absolute;
  left: 0;
  width: 1em;
  height: 1em;
  content: "ー";
  color: #aaa;
}

/*記事ブロック専用style（従来より引き継ぎ）
/************************************************************/
/*ボックス*/
.content {
  position: relative;
  line-height: 1.75;
  /*段落*/
  /*画像設定*/
  /*リスト設定*/
  /*整形済みテキスト*/
  /*ライン*/
  /*テーブル*/
  /*引用*/
  /*枠線ボックス*/
  /*二重線ボックス*/
  /*背景ボックス*/
  /*ペーパーボックス*/
  /*太文字ボックス*/
  /*括弧ボックス*/
  /*はてなボックス*/
  /*ビックリボックス*/
  /*ポイントボックス*/
  /*注釈*/
  /*イエローマーカー*/
  /*ピンクマーカー*/
  /*ブルーマーカー*/
  /*YouTube*/
  /*twitter & instagram*/
  /*最初の要素*/
}
.content a {
  color: #3a4972;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: underline dotted currentColor;
  text-underline-offset: 0.25em;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .content a:hover {
    opacity: 0.6;
    text-decoration-style: solid;
  }
}
.content em {
  font-style: italic;
}
.content p + p {
  margin-top: 16px;
}
.content h2,
.content h3,
.content h4,
.content h5 {
  font-weight: bold;
  line-height: 1.4;
}
.content h2 {
  font-size: 2.2rem;
  margin: 2em 0 0.5em;
}
@media only screen and (min-width: 560px) {
  .content h2 {
    margin: 3em 0 0.75em;
    font-size: 2.6rem;
  }
}
.content h2 + h2, .content h2 + h3, .content h2 + h4, .content h2 + h5 {
  margin-top: 1.5em;
}
.content h3 {
  font-size: 1.8rem;
  margin: 1.5em 0 0.5em;
}
@media only screen and (min-width: 560px) {
  .content h3 {
    margin: 1.75em 0 0.7em;
    font-size: 2.1rem;
  }
}
.content h3 + h2, .content h3 + h3, .content h3 + h4, .content h3 + h5 {
  margin-top: 1.5em;
}
.content h4 {
  font-size: 1.6rem;
  margin: 1.5em auto 0.25em;
}
@media only screen and (min-width: 560px) {
  .content h4 {
    margin: 1.75em auto 0.4em;
    font-size: 1.8rem;
  }
}
.content h4 + h2, .content h4 + h3, .content h4 + h4, .content h4 + h5 {
  margin-top: 1.5em;
}
.content h5 {
  margin: 1.5em auto 0.25em;
}
@media only screen and (min-width: 560px) {
  .content h5 {
    margin: 1.75em auto 0.4em;
  }
}
.content h5 + h2, .content h5 + h3, .content h5 + h4, .content h5 + h5 {
  margin-top: 1.5em;
}
.content .wp-block-image {
  margin: 1.5em 0;
}
@media (hover: hover) {
  .content .wp-block-image a:hover {
    border-bottom: none;
  }
}
.content .wp-block-image figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}
.content .wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.content .wp-block-column .wp-block-image:first-child {
  margin-top: 0;
}
.content ul,
.content ol {
  list-style-type: none;
  margin-top: 20px;
}
.content ul ul,
.content ul ol,
.content ol ul,
.content ol ol {
  margin-top: 0;
}
.content ol {
  counter-reset: number;
}
.content ul li:before {
  content: "・";
  position: absolute;
  left: 0;
}
.content ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
}
.content ul li,
.content ol li {
  position: relative;
  line-height: 1.5;
  padding: 10px 0 0 25px;
}
.content pre {
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  margin-top: 20px;
  padding: 20px;
  background-color: #f7f7f7;
  border-left: solid 5px #191919;
  color: #7F7F7F;
  overflow: auto;
}
.content hr {
  margin-top: 40px;
  border-top: 1px solid #f7f7f7;
  border-bottom: 1px solid #E5E5E5;
}
.content .wp-block-table {
  margin: 1.5em 0;
}
.content .wp-block-table table tr:first-child th {
  border-top: 1px solid #323232;
}
.content .wp-block-table table tr:first-child td {
  border-top: 1px solid #E5E5E5;
}
.content .wp-block-table table tr:nth-child(2n+1) {
  background: #f7f7f7;
}
.content .wp-block-table table th {
  padding: 10px;
  background: #323232;
  color: #fff;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.content .wp-block-table table td {
  padding: 10px;
  border-color: #e5e5e5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.content .wp-block-columns {
  margin: 1em 0;
}
.content blockquote,
.content .borderBox,
.content .border2Box,
.content .bgBox,
.content .paperBox,
.content .boldBox,
.content .bracketsBox,
.content .questionBox,
.content .exclamationBox,
.content .pointBox {
  margin-top: 1.5em;
  margin-bottom: 1em;
}
.content blockquote blockquote,
.content .borderBox blockquote,
.content .border2Box blockquote,
.content .bgBox blockquote,
.content .paperBox blockquote,
.content .boldBox blockquote,
.content .bracketsBox blockquote,
.content .questionBox blockquote,
.content .exclamationBox blockquote,
.content .pointBox blockquote {
  margin: 0;
}
.content .borderBox,
.content .border2Box,
.content .bgBox,
.content .paperBox,
.content .boldBox,
.content .bracketsBox,
.content .questionBox,
.content .exclamationBox,
.content .pointBox {
  border-radius: 10px;
}
.content blockquote {
  background-color: #f7f7f7;
  border-left: 5px solid #7d869f;
  color: #2e2e2e;
  margin-top: 20px;
  padding: 20px 20px 20px 40px;
  position: relative;
}
.content .borderBox {
  padding: 20px;
  border: 1px solid #E5E5E5;
}
.content .border2Box {
  padding: 20px;
  border: 4px double #E5E5E5;
}
.content .bgBox {
  padding: 20px;
  background: #f7f7f7;
}
.content .paperBox {
  position: relative;
  padding: 20px;
  background-color: #f7f7f7;
}
.content .paperBox::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-color: #D8D8D8 #fff #fff #D8D8D8;
  border-style: solid;
  border-width: 0 0 20px 20px;
}
.content .boldBox {
  padding: 20px;
  border: 3px solid #191919;
  font-weight: 700;
}
.content .bracketsBox {
  position: relative;
  padding: 20px;
}
.content .bracketsBox::before, .content .bracketsBox::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 30px;
  content: "";
}
.content .bracketsBox::before {
  top: 0;
  left: 0;
  border-top: solid 1px #191919;
  border-left: solid 1px #191919;
}
.content .bracketsBox::after {
  right: 0;
  bottom: 0;
  border-right: solid 1px #191919;
  border-bottom: solid 1px #191919;
}
.content .questionBox,
.content .exclamationBox {
  position: relative;
  padding: 20px 20px 20px 70px;
}
.content .questionBox::before,
.content .exclamationBox::before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
}
.content .questionBox {
  background-color: #D9EFF7;
}
.content .questionBox::before {
  content: "?";
  background: #0096c8;
}
.content .exclamationBox {
  background-color: #F6E1DF;
}
.content .exclamationBox::before {
  content: "!";
  background: #c53929;
}
.content .pointBox {
  position: relative;
  padding: 20px;
  border: 2px solid #c53929;
}
.content .pointBox::before {
  content: "POINT";
  position: absolute;
  top: -15px;
  left: 15px;
  font-weight: 700;
  background-color: #ffffff;
  color: #c53929;
  padding: 0 10px;
}
.content .asterisk {
  display: block;
  font-size: 1.2rem;
  color: #7F7F7F;
}
.content .markerYellow {
  background: linear-gradient(transparent 60%, #ffffbc 60%);
}
.content .markerPink {
  background: linear-gradient(transparent 60%, #FFDFEF 60%);
}
.content .markerBlue {
  background: linear-gradient(transparent 60%, #cce5ff 60%);
}
.content .youtube {
  margin: 1.5em auto 1em auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.content .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content div:has(iframe) {
  margin-top: 1em;
}
.content iframe {
  max-width: 100%;
}
@media only screen and (max-width: 559px) {
  .content iframe[style*="--sp-height"] {
    height: var(--sp-height, 500px);
  }
}
.content iframe[title*=YouTube] {
  aspect-ratio: 16/9;
  height: auto;
}
.content .twitter-tweet,
.content .instagram-media {
  width: 500px !important;
  max-width: 100% !important;
  margin: 20px auto 0 auto !important;
}
.content > *:first-child {
  margin-top: 0;
}
.content .outline {
  display: inline-block;
  margin-top: 20px;
  padding: 1.25em;
  width: 100%;
  border: 1px solid #0cbc9e;
  border-radius: 20px;
}
.content .outline__toggle {
  display: none;
}
.content .outline__toggle:checked + .outline__switch:after {
  content: "\f5d2";
}
.content .outline__toggle:checked + .outline__switch + .outline__list {
  width: auto;
  height: auto;
  margin-top: 10px;
  transition: 0.2s;
}
.content .outline__switch {
  color: #0cbc9e;
  vertical-align: middle;
  cursor: pointer;
}
.content .outline__switch:after {
  margin-left: 5px;
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 1.7rem;
  content: "\e7cd";
  cursor: pointer;
  vertical-align: middle;
  transform: translateY(-1px);
}
.content .outline__switch + .outline__list {
  overflow: hidden;
  width: 0;
  height: 0;
  margin-top: 0;
  margin-left: -20px;
  transition: 0.2s;
}
.content .outline__item {
  padding: 6px 0 0 1.5em;
  font-size: 1.4rem;
}
.content .outline__item:before {
  content: normal;
}
.content .outline__item .outline__item .outline__number {
  padding: 2px 6px;
  width: inherit;
  height: inherit;
  background: transparent;
  color: #0cbc9e;
}
.content .outline__link {
  display: inline-block;
  color: #23221e;
}
@media (hover: hover) {
  .content .outline__link:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.content .outline__number {
  margin-right: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.75em;
  height: 1.75em;
  color: #fff;
  font-weight: 400;
  background: #0cbc9e;
  border-radius: 5px;
}

/*管理画面投稿エディタ専用*/
body.mce-content-body {
  background: #FFF;
  padding: 25px !important;
  margin: 0 !important;
}

.front__new-articles {
  padding-bottom: 120px;
  background: #f8f7f6;
}
.front__new-articles .slider__wrapper {
  padding-top: 24px;
}
.front__new-articles .slider__wrapper .slick-track {
  display: flex;
}
.front__new-articles .slider__wrapper .slick-slide {
  height: auto !important;
}
.front__new-articles .slider-item {
  padding: 0 10px;
  width: 88vw;
}
.front__new-articles .mv-card {
  height: 100%;
}
.front__new-articles .mv-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.front__new-articles .mv-card__header {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  gap: 1em;
  padding: 1.5em;
}
.front__new-articles .mv-card__contents {
  padding: 1.5em 1.5em 0;
}
.front__new-articles .mv-card-img {
  width: 100%;
  aspect-ratio: 1.7804878049;
  overflow: hidden;
  border-radius: 13.3333333333px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.front__new-articles .mv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}
.front__new-articles .mv-card-category {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 1em;
}
.front__new-articles .mv-card-category .cat-item {
  padding: 0.35em 1em;
  display: inline-block;
  font-size: 1.1rem;
  border: 1px solid #23221e;
  border-radius: 3em;
}
.front__new-articles .mv-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
}
.front__new-articles .mv-card-excerpt {
  margin-top: 0.75em;
  font-size: 1.2rem;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.front__new-articles .mv-card-datetime {
  font-size: 1.4rem;
  color: #999;
}
@media (hover: hover) {
  .front__new-articles .mv-card a:hover {
    opacity: 0.6;
  }
  .front__new-articles .mv-card a:hover .mv-card-img img {
    transform: scale(1.08);
  }
}
.front__new-articles .btn-area {
  margin-top: 20px;
}
.front__new-articles .slider-arrows {
  width: calc(88vw - 20px);
  height: 100%;
}
.front__new-articles .slider-arrow {
  width: 32px;
  height: 32px;
  border-width: 1px;
}
.front__new-articles .slider-arrow::before, .front__new-articles .slider-arrow::after {
  width: 8px;
  height: 2px;
}
.front__new-articles .slider-arrow.prev-arrow {
  transform: translateX(-50%);
}
@media (hover: hover) {
  .front__new-articles .slider-arrow.prev-arrow:hover {
    transform: translateX(calc(-50% + 5px));
  }
}
.front__new-articles .slider-arrow.next-arrow {
  transform: translateX(50%);
}
@media (hover: hover) {
  .front__new-articles .slider-arrow.next-arrow:hover {
    transform: translateX(calc(50% - 5px));
  }
}
.front__new-articles .site-description {
  padding-top: 10px;
}
.front__new-articles .site-description__textarea {
  margin: 0 auto;
  padding: 1.5em;
  width: 100%;
  max-width: 1000px;
  font-size: 1.2rem;
  background: #e5f5f3;
  border-radius: 20px;
}
@media only screen and (min-width: 960px) {
  .front__new-articles {
    padding-bottom: 160px;
  }
  .front__new-articles .slider-item {
    padding: 0 20px;
    width: 88vw;
    max-width: 1260px;
  }
  .front__new-articles .mv-card {
    /* &-img {
        border-radius: 0 $default_radius $default_radius 0;
    } */
  }
  .front__new-articles .mv-card a {
    flex-direction: row-reverse;
  }
  .front__new-articles .mv-card__header {
    flex: 1;
    padding: 2em;
  }
  .front__new-articles .mv-card__contents {
    padding: 30px 30px 30px 0;
    width: 68%;
  }
  .front__new-articles .mv-card-category {
    margin-bottom: clamp(1em, 3vw, 3em);
  }
  .front__new-articles .mv-card-category .cat-item {
    font-size: 1.3rem;
  }
  .front__new-articles .mv-card-title {
    font-size: clamp(1.8rem, 1.875vw, 2.8rem);
  }
  .front__new-articles .mv-card-excerpt {
    font-size: 1.4rem;
  }
  .front__new-articles .mv-card-datetime {
    margin-top: clamp(1em, 3vw, 3em);
  }
  .front__new-articles .slider-arrows {
    width: calc(88vw - 40px);
    max-width: 1220px;
  }
  .front__new-articles .site-description {
    padding-top: 24px;
  }
  .front__new-articles .site-description__textarea {
    padding: 1em 2em;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 5em;
  }
}

.section-radius {
  position: relative;
  margin-top: -60px;
  padding: 60px 0 120px;
  border-radius: 20px 20px 0 0;
  background: #fff;
}
@media only screen and (min-width: 960px) {
  .section-radius {
    margin-top: -80px;
    padding: 80px 0 160px;
    border-radius: 60px 60px 0 0;
  }
}
.section-radius:last-of-type {
  padding-bottom: 0;
}

.section-whole-title {
  margin-bottom: 1.25em;
  letter-spacing: 0.02em;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1;
  text-transform: capitalize;
}
.section-whole-title.--center {
  text-align: center;
}
@media only screen and (min-width: 560px) {
  .section-whole-title {
    font-size: 4.8rem;
  }
}

.section-title__sub span {
  display: inline-block;
  padding: 0.35em 1em;
  border-radius: 3em;
  line-height: 1;
  font-size: 1.2rem;
  color: #fff;
  background: #0cbc9e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.1em;
}

.front__categories {
  background: #fff;
}

.front__category-articles + .front__category-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.front__category-articles .section-title__with-link {
  margin-bottom: 0.75em;
}
.front__category-articles .section-title .en {
  display: inline-block;
  margin-left: 1em;
  font-size: 1.3rem;
  color: #999;
  font-weight: normal;
  text-transform: capitalize;
}
.front__category-articles .category-articles {
  position: relative;
}
.front__category-articles .category-articles__contents {
  margin-top: 2.1em;
}
.front__category-articles .category-articles__list {
  display: grid;
  gap: 1.2em;
  grid-template-columns: 1fr 1fr;
}
.front__category-articles .category-articles__item:first-child {
  grid-column: 1/3;
  grid-row: 1/2;
}
.front__category-articles .category-articles__item:first-child .card-title {
  font-size: 1.6rem;
}
.front__category-articles .category-articles__item:not(:first-child) .card-header {
  padding: 0.85em;
}
.front__category-articles .category-articles__item:not(:first-child) .card-title {
  font-size: 1.4rem;
}
.front__category-articles .category-articles__item:nth-child(2), .front__category-articles .category-articles__item:nth-child(4) {
  grid-column: 1/2;
}
.front__category-articles .category-articles__item:nth-child(3), .front__category-articles .category-articles__item:nth-child(5) {
  grid-column: 2/3;
}
.front__category-articles .category-articles__item:nth-child(2), .front__category-articles .category-articles__item:nth-child(3) {
  grid-row: 2/3;
}
.front__category-articles .category-articles__item:nth-child(4), .front__category-articles .category-articles__item:nth-child(5) {
  grid-row: 3/4;
}
@media only screen and (min-width: 960px) {
  .front__category-articles .section-title__with-link {
    margin-bottom: 0.25em;
  }
  .front__category-articles .category-articles__list {
    grid-template-columns: 2.8fr 1fr 1fr;
  }
  .front__category-articles .category-articles__item:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .front__category-articles .category-articles__item:first-child .card-title {
    font-size: 1.8rem;
  }
  .front__category-articles .category-articles__item:nth-child(2), .front__category-articles .category-articles__item:nth-child(4) {
    grid-column: 2/3;
  }
  .front__category-articles .category-articles__item:nth-child(3), .front__category-articles .category-articles__item:nth-child(5) {
    grid-column: 3/4;
  }
  .front__category-articles .category-articles__item:nth-child(2), .front__category-articles .category-articles__item:nth-child(3) {
    grid-row: 1/2;
  }
  .front__category-articles .category-articles__item:nth-child(4), .front__category-articles .category-articles__item:nth-child(5) {
    grid-row: 2/3;
  }
}

.front__search {
  background: #4abaa7;
}
.front__search .search-contents__title {
  color: #fff;
}

.front__solution {
  background: #f8f7f6;
}
.front__solution .section-title {
  margin-bottom: 1.25em;
}
.front__solution .solutions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.5em;
}
.front__solution .solutions-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}
.front__solution .solutions-item__title {
  margin-top: 1.2em;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.front__solution .solutions-item__title .symbol-newtab {
  font-size: inherit;
  color: #999;
  vertical-align: middle;
  margin-left: 0.2em;
}
.front__solution .solutions-item a {
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .front__solution .solutions-item a:hover {
    opacity: 0.6;
  }
  .front__solution .solutions-item a:hover .solutions-item__img img {
    transform: scale(1.08);
  }
}
@media only screen and (min-width: 560px) {
  .front__solution .solutions-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .front__solution .solutions-item__title {
    font-size: 1.4rem;
  }
}

.front__youtube {
  margin-top: 60px;
}
.front__youtube .section-title {
  margin-bottom: 0.75em;
  line-height: 1.3;
}
.front__youtube .youtube-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.front__youtube .youtube-item {
  width: 100%;
}
.front__youtube .youtube-item iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9 !important;
}
@media only screen and (min-width: 560px) {
  .front__youtube {
    margin-top: 80px;
  }
  .front__youtube .section-title {
    margin-bottom: 1em;
  }
  .front__youtube .youtube-item {
    flex: 1;
  }
}

.front__news .section-title {
  margin-bottom: 1em;
}
.front__news .slider-item {
  padding: 0 10px;
  width: 86vw;
}
.front__news .slider-item .card a {
  padding: 1em;
  background: #f8f7f6;
  border-radius: 20px;
}
.front__news .slider-item .card-figure {
  width: 30%;
}
.front__news .slider-item .card-title {
  font-size: 1.4rem;
}
.front__news .slider-arrows {
  height: 100%;
}
.front__news .slider-arrow {
  width: 32px;
  height: 32px;
  border-width: 1px;
}
.front__news .slider-arrow::before, .front__news .slider-arrow::after {
  width: 8px;
  height: 2px;
}
.front__news .dots-box {
  display: none;
}
@media only screen and (min-width: 560px) {
  .front__news .slider-item {
    width: 480px;
  }
  .front__news .slider-item .card a {
    padding: 1.5em;
  }
}

.archive-list {
  display: grid;
  gap: 1.25em;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.archive-item .card-title {
  font-size: 1.5rem;
}

.archive__pager {
  margin-top: 60px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.archive__pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
.archive__pager .page-numbers.current {
  color: #999;
  background: #eee;
  cursor: default;
}
.archive__pager .page-numbers.dots {
  cursor: default;
}
.archive__pager .page-numbers.prev, .archive__pager .page-numbers.next {
  position: relative;
}
.archive__pager .page-numbers.prev::before, .archive__pager .page-numbers.prev::after, .archive__pager .page-numbers.next::before, .archive__pager .page-numbers.next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  content: "";
  background: #23221e;
}
@media (hover: hover) {
  .archive__pager .page-numbers.prev:hover::before, .archive__pager .page-numbers.prev:hover::after, .archive__pager .page-numbers.next:hover::before, .archive__pager .page-numbers.next:hover::after {
    background: #fff;
  }
}
.archive__pager .page-numbers.prev::before {
  transform: rotate(45deg) translateY(-1px);
  transform-origin: 0;
}
.archive__pager .page-numbers.prev::after {
  transform: rotate(-45deg) translateY(1px);
  transform-origin: 0;
}
.archive__pager .page-numbers.next::before {
  transform: rotate(-45deg) translateY(-1px);
  transform-origin: 100%;
}
.archive__pager .page-numbers.next::after {
  transform: rotate(45deg) translateY(1px);
  transform-origin: 100%;
}
@media (hover: hover) {
  .archive__pager .page-numbers:not(.current):not(.dots):hover {
    background: #0cbc9e;
    color: #fff;
  }
}

.single-time {
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-size: 1.4rem;
  color: #999;
}
.single-time .symbol-datetime {
  font-size: inherit;
  transform: translateY(1px);
}

.single-tag-list {
  display: flex;
  flex-wrap: wrap;
}

.post-header__tags {
  margin: 0.5em 0 0.75em;
}
.post-header__tags .single-tag-list {
  gap: 0.25em;
}
.post-header__tags .tag-item a {
  padding: 0.5em 1em;
  font-size: 1.2rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 2em;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .post-header__tags .tag-item a:hover {
    opacity: 0.6;
  }
}
.post-header__title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.4;
}
.post-header__info {
  margin-top: 0.75em;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.post-header__eyecatch {
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
}
.post-header__eyecatch img {
  position: relative;
  width: 100%;
  z-index: -1;
}
.post-header__sns .single-sns__item a use {
  fill: currentColor;
}
@media (hover: hover) {
  .post-header__sns .single-sns__item a:hover {
    opacity: 0.6;
  }
}

.single-contents {
  margin-top: 40px;
}
@media only screen and (min-width: 560px) {
  .single-contents {
    margin-top: 60px;
  }
}

.single-footer {
  margin-top: 40px;
}
.single-footer__tags {
  margin-bottom: 1em;
  padding: 1.5em;
  background: #f8f7f6;
  border-radius: 20px;
}
.single-footer__tags .single-tag-list {
  gap: 0.25em 1em;
}
.single-footer__tags .tag-item a {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.2;
}
.single-footer__datetime .single-time {
  justify-content: right;
}
.single-footer__sns {
  margin-top: 1em;
}
.single-footer__sns .single-sns__list {
  justify-content: right;
}
.single-footer__sns .single-sns__item a {
  width: 2em;
  height: 2em;
  font-size: 2rem;
  color: #999;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.single-footer__sns .single-sns__item a svg {
  width: 64%;
  fill: currentColor;
}
@media (hover: hover) {
  .single-footer__sns .single-sns__item a:hover {
    color: #0cbc9e;
  }
}

.related-posts {
  margin-top: 60px;
}
.related-posts__title {
  margin-bottom: 0.75em;
  padding-top: 1em;
  font-size: 1.8rem;
  font-weight: bold;
  border-top: 1px solid #e5e5e5;
}
.related-posts__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25em;
}
.related-posts .card-title {
  font-size: 1.5rem;
}

.page .section__inner {
  max-width: 1080px;
}

.page-contents {
  margin-top: 60px;
  background: #fff;
}

.page-section {
  margin-top: 40px;
}
.page-section__title {
  margin-bottom: 0.75em;
  font-size: 2.2rem;
  font-weight: bold;
}
.page-section__heading {
  margin-bottom: 1em;
}
.page-section__heading .page-section__title {
  margin-bottom: 0.25em;
}
.page-section.has_bg {
  padding: 60px 0;
  background: #f8f7f6;
}
@media only screen and (min-width: 560px) {
  .page-section {
    margin-top: 60px;
  }
  .page-section__title {
    font-size: 2.6rem;
  }
  .page-section__heading {
    margin-bottom: 40px;
  }
  .page-section__heading.--center {
    text-align: center;
  }
}

.contents-partners {
  margin-top: 60px;
}
@media only screen and (min-width: 560px) {
  .contents-partners {
    margin-top: 80px;
  }
}

.partner-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
}
.partner-item + .partner-item {
  margin-top: 40px;
}
.partner-item__eyecatch {
  width: 100%;
}
.partner-item__img {
  width: 100%;
  aspect-ratio: 1.7804878049;
  overflow: hidden;
  border-radius: 20px;
}
.partner-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-item__body {
  flex: 1;
}
.partner-item__title {
  margin-bottom: 0.25em;
  font-size: 1.8rem;
  font-weight: bold;
}
.partner-item__text {
  line-height: 1.75;
}
.partner-item__link {
  margin-top: 1em;
}
@media only screen and (min-width: 560px) {
  .partner-item__eyecatch {
    width: 30%;
    min-width: 240px;
  }
  .partner-item__title {
    margin-bottom: 0.5em;
    font-size: 2.2rem;
  }
}

.faq-item + .faq-item {
  margin-top: 10px;
}
.faq-item__question {
  padding: 1em;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  cursor: pointer;
}
.faq-item__question .question-text {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.faq-item__question .question-text::before {
  content: "Q. ";
}
.faq-item__question .symbol-toggle {
  color: #999;
}
.faq-item__answer {
  padding: 0 1em 0 2.25em;
  text-indent: -1.25em;
  line-height: 1.75;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease-out;
}
.faq-item__answer::before {
  content: "A. ";
}
.faq-item.open .faq-item__question .symbol-toggle {
  transform: rotate(180deg);
}
.faq-item.open .faq-item__answer {
  padding: 1em 1em 1em 2.25em;
  height: auto;
  opacity: 1;
}

.partner-companies + .partner-companies {
  margin-top: 40px;
}
@media only screen and (min-width: 560px) {
  .partner-companies + .partner-companies {
    margin-top: 60px;
  }
}

.partners__wrapper {
  padding: 30px 20px;
  background: #f8f7f6;
  border-radius: 20px;
}
@media only screen and (min-width: 960px) {
  .partners__wrapper {
    padding: 36px;
  }
}

.partner-company-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75em 1em;
}
.partner-company-list ul a {
  font-size: 1.3rem;
  color: #3a4972;
  text-decoration: underline dotted currentColor;
  text-underline-offset: 0.25em;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  .partner-company-list ul a:hover {
    opacity: 0.6;
    text-decoration-style: solid;
  }
}
@media only screen and (min-width: 560px) {
  .partner-company-list ul {
    grid-template-columns: repeat(auto-fit, minmax(14em, 1fr));
  }
}

.page-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 1em;
}
.page-articles-list .card {
  width: 100%;
}
@media only screen and (min-width: 560px) and (max-width: 959px) {
  .page-articles-list .card {
    width: calc(50% - 0.5em);
  }
}
@media only screen and (min-width: 960px) {
  .page-articles-list {
    gap: 2vw;
  }
  .page-articles-list .card {
    flex: 1;
  }
  .page-articles-list .card-title {
    font-size: 1.4rem;
  }
}

.error__404 {
  margin-top: 60px;
}/*# sourceMappingURL=style.css.map */