@charset "UTF-8";
.c-split__line {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 10px 0;
  width: 100%;
}

.c-split__graphical {
  background-color: none;
  background-image: url(../img/base/line.png?id=111);
  background-size: contain;
  background-position: top center;
  border: none;
  width: 100%;
}

@media (min-width: 751px) {
  .c-split__line {
    margin: 15px 0;
  }
  .c-split__graphical {
    height: 80px;
    margin-bottom: 40px;
  }
}
.icon-circle {
  border-radius: 20px;
}

.icon-accent {
  background-color: #4662A2;
  color: #fff;
}

.icon-accent-reverse {
  background-color: #fff;
  color: #4662A2;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 20;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
html, body, ul, li, table, tr, th, td {
  margin: 0;
  padding: 0;
}

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

ul, li {
  list-style: none;
}

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

button {
  border: none;
  background: none;
}

.displayScroll {
  opacity: 0;
  transform: translate(0, 40%);
  transition: all 0.3s;
  z-index: 300;
}

.displayScroll.isActive {
  opacity: 1;
  transform: translate(0, 0);
}

.submitScroll {
  opacity: 0;
  transform: translate(0, 40%);
  transition: all 0.3s;
  z-index: 300;
}

.submitScroll.isActive {
  opacity: 1;
  transform: translate(0, 0);
}

html,
body,
tr,
td,
div,
p,
h1,
h2,
h3,
h4 {
  color: #333;
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

html,
body,
tr,
th,
td {
  font-size: 0.9em;
}

p {
  line-height: 1.6em;
}

.u-center {
  text-align: center;
}

.u-text {
  margin-bottom: 5px;
}

a {
  color: #1E366E;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: #4662A2;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a:active {
  color: #1E366E;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a.iconLink {
  display: inline-block;
  text-decoration: none;
}
a.iconLink span {
  display: flex;
  align-items: center;
}

a:hover span.iconLinkText {
  text-decoration: underline;
}

.yen {
  font-size: 0.8em;
  padding-left: 4px;
}

@media (min-width: 751px) {
  p {
    line-height: 1.7em;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  html,
  body,
  tr,
  th,
  td {
    font-size: 0.98em;
    letter-spacing: 0.01em;
    line-height: 1.6em;
  }
  p {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  html,
  body,
  tr,
  th,
  td {
    font-size: 1.05em;
    letter-spacing: 0.02em;
    line-height: 1.8em;
  }
  p {
    margin-bottom: 5px;
  }
}
.c-article__wrapper {
  padding: 40px 0;
}
.c-article__container {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.c-article__heading {
  color: #4662A2;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2em;
}
.c-article__title {
  color: #4662A2;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3em;
}
.c-article__contents {
  margin-bottom: 20px;
}
.c-article__spec {
  align-items: flex-start;
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95em;
  line-height: 1.4em;
  margin-bottom: 10px;
  padding: 15px 15px 0 15px;
}
.c-article__spec dt {
  background-color: #4662A2;
  border-radius: 2px;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 3px;
}
.c-article__ps {
  display: flex;
  gap: 0 10px;
  margin-bottom: 10px;
}
.c-article__date {
  color: #666;
  font-weight: bold;
  line-height: 1.6em;
}
.c-article__categories {
  display: flex;
  gap: 0 4px;
}
.c-article__category a {
  background-color: #4662A2;
  border-radius: 20px;
  color: #fff;
  font-size: 0.75em;
  text-align: center;
  padding: 4px 8px;
}
.c-article__category a:hover {
  color: #fff;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-article__spec {
    gap: 0 8%;
  }
  .c-article__spec dt {
    margin-bottom: 5px;
    padding: 2px 8px;
    width: 100%;
  }
  .c-article__spec dd {
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 751px) {
  .c-article__ps {
    gap: 0 10px;
  }
  .c-article__spec dt {
    text-align: center;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-article__wrapper {
    padding: 80px 0;
  }
  .c-article__container {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .c-article__heading {
    font-size: 1.1em;
    margin-bottom: 20px;
  }
  .c-article__title {
    font-size: 1.5em;
    line-height: 1.4em;
    margin-bottom: 15px;
  }
  .c-article__text {
    margin-top: 5px;
  }
  .c-article__spec {
    gap: 0 6%;
  }
  .c-article__spec dt {
    margin-bottom: 20px;
    padding: 2px 8px;
    width: 18%;
  }
  .c-article__spec dd {
    margin-bottom: 20px;
    width: 74%;
  }
}
@media (min-width: 1025px) {
  .c-article__wrapper {
    padding: 80px 0;
  }
  .c-article__container {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  .c-article__heading {
    margin-bottom: 30px;
  }
  .c-article__title {
    font-size: 1.6em;
    line-height: 1.4em;
    margin-bottom: 20px;
  }
  .c-article__text {
    margin-top: 10px;
  }
  .c-article__spec {
    gap: 0 8%;
  }
  .c-article__spec dt {
    margin-bottom: 20px;
    padding: 2px 8px;
    width: 18%;
  }
  .c-article__spec dd {
    margin-bottom: 20px;
    width: 74%;
  }
  .c-article__date {
    line-height: 1.8em;
  }
}
.c-badge__new {
  background-color: #fa8383;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 0.7em;
  font-weight: bold;
  line-height: 1.4em;
  padding: 4px 5px;
}

@media (min-width: 751px) {
  .c-badge__new {
    padding: 0 10px;
  }
}
.c-bg--2 {
  height: 100%;
}

.c-bnr__wrapper {
  padding: 40px 0;
}
.c-bnr__chara img {
  width: 100%;
}
.c-bnr__lists {
  display: flex;
  flex-wrap: wrap;
}
.c-bnr__list {
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  transition: 0.3s;
  width: 48%;
}
.c-bnr__list:hover {
  transform: scale(1.1);
}
.c-bnr__heading {
  color: #4662A2;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 40px;
  text-align: center;
}
.c-bnr__heading small {
  color: #333;
  font-size: 0.6em;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-bnr__chara {
    margin: 20px auto 40px auto;
    width: 30%;
  }
  .c-bnr__lists {
    gap: 20px 1%;
  }
}
@media (min-width: 751px) {
  .c-bnr__wrapper {
    padding: 100px 0 120px 0;
  }
  .c-bnr__container {
    display: flex;
    justify-content: space-between;
  }
  .c-bnr__chara {
    width: 15%;
  }
  .c-bnr__lists {
    gap: 20px 2%;
    width: 80%;
  }
  .c-bnr__list {
    width: 23%;
  }
}
.c-box__wrapper {
  padding: 0 20px;
}
.c-box__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  height: 100%;
  padding: 20px;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-box__wrapper {
    padding: 0 40px;
  }
  .c-box__container {
    border-radius: 8px;
    padding: 30px;
  }
}
@media (min-width: 1025px) {
  .c-box__wrapper {
    padding: 20px;
  }
  .c-box__container {
    border-radius: 10px;
    padding: 40px;
  }
}
.c-btn__wrapper {
  padding: 15px 0;
}
.c-btn__general {
  background-color: #4662A2;
  background-image: url(../img/base/footer-bg.png);
  background-position: bottom left;
  background-size: cover;
  border: 1px solid #4662A2;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  border-radius: 6px;
  padding: 5px 15px 5px 15px;
}
.c-btn__general a, .c-btn__general a:hover {
  color: #fff;
  text-decoration: none;
}
.c-btn__general:hover {
  background-color: #4662A2;
  border: 1px solid none;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
}
.c-btn__submit {
  background-color: #4662A2;
  border: 1px solid #4662A2;
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.c-btn__submit:hover {
  background-color: #4662A2;
  border: 1px solid #4662A2;
  color: #fff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transform: scale(1.05);
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-btn__wrapper {
    padding: 15px 0;
  }
  .c-btn__general, .c-btn__submit {
    border-radius: 8px;
    font-size: 0.9em;
    padding: 6px 20px 6px 20px;
    min-width: 100px;
  }
}
@media (min-width: 1025px) {
  .c-btn__wrapper {
    padding: 20px 0;
  }
  .c-btn__general, .c-btn__submit {
    border-radius: 10px;
    font-size: 0.95em;
    min-width: 100px;
    padding: 8px 35px 10px 35px;
  }
}
.c-contentsLink__wrapper {
  background-color: #E9EEF7;
}
.c-contentsLink__btn {
  background-color: #4662A2;
  background-image: url(../img/base/footer-bg.png);
  background-position: bottom left;
  background-size: cover;
  border-radius: 8px;
  border: 3px solid #4662A2;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 12px 0;
  text-align: center;
  width: 100%;
}
.c-contentsLink__btn:hover {
  background-color: #4D77D6;
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: scale(1.05);
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-contentsLink__wrapper {
    padding: 40px 0;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-contentsLink__wrapper {
    padding: 60px 0;
  }
  .c-contentsLink__btn {
    border-radius: 8px;
    padding: 25px 10px;
  }
}
@media (min-width: 1025px) {
  .c-contentsLink__wrapper {
    padding: 80px 0;
  }
  .c-contentsLink__btn {
    border-radius: 10px;
    padding: 30px 10px;
  }
}
.c-copy__primary {
  color: #4662A2;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.c-copy__primary a {
  color: #4662A2;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-copy__primary {
    font-size: 1.5em;
    line-height: 1.4em;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1025px) {
  .c-copy__primary {
    font-size: 1.6em;
    line-height: 1.4em;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
}
.c-feature__wrapper {
  padding: 20px 0;
}
.c-feature__photo {
  margin-bottom: 20px;
}
.c-feature__photo figure {
  width: 100%;
}
.c-feature__photo img {
  width: 100%;
}

@media (min-width: 751px) {
  .c-feature__container {
    display: flex;
    justify-content: space-between;
  }
  .c-feature__container--reverse {
    flex-direction: row-reverse;
  }
  .c-feature__photo {
    align-items: top;
    display: flex;
  }
  .c-feature__contents {
    align-items: center;
    display: flex;
  }
  .c-feature__text--reverse {
    justify-content: flex-end;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-feature__wrapper {
    padding: 40px 0;
  }
  .c-feature__container {
    max-width: 860px;
  }
  .c-feature__photo {
    width: 35%;
  }
  .c-feature__contents {
    width: 55%;
  }
}
@media (min-width: 1025px) {
  .c-feature__wrapper {
    padding: 80px 0;
  }
  .c-feature__photo {
    width: 30%;
  }
  .c-feature__contents {
    width: 60%;
  }
}
.c-floatLink__list {
  padding: 2px;
  width: 40px;
}
.c-floatLink__list img {
  transition: 0.3s;
  width: 100%;
}
.c-floatLink__list a {
  cursor: pointer;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-floatLink {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 300;
  }
  .c-floatLink__list a:active {
    transform: scale(0.9);
  }
}
@media (min-width: 751px) {
  .c-floatLink {
    position: fixed;
    bottom: 60px;
    right: 0;
    z-index: 300;
    padding: 12px;
  }
  .c-floatLink__list {
    padding: 4px;
    width: 60px;
  }
  .c-floatLink__list a img:hover {
    opacity: 0.8;
    transform: scale(1.2);
  }
}
.c-heading__wrapper {
  margin-bottom: 20px;
  padding: 20px 0;
}
.c-heading__primary {
  color: #4662A2;
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 40px;
  text-align: center;
}
.c-heading__primary small {
  font-size: 0.6em;
}
.c-heading__secondary {
  color: #4662A2;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 6px;
}
.c-heading__secondary a {
  color: #4662A2;
}
.c-heading__secondary a:hover {
  color: #4D77D6;
}
.c-heading__tertiary {
  color: #4662A2;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}
.c-heading__tertiary a {
  color: #4662A2;
}
.c-heading__tertiary a:hover {
  color: #4D77D6;
}
.c-heading__description {
  margin-top: -20px;
  text-align: center;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-heading__wrapper {
    padding: 30px 0;
  }
  .c-heading__primary {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 60px;
  }
  .c-heading__secondary {
    font-size: 1.2em;
    margin-bottom: 8px;
  }
}
@media (min-width: 1025px) {
  .c-heading__wrapper {
    padding: 40px 0;
  }
  .c-heading__primary {
    font-size: 2em;
    line-height: 1.2em;
    margin-bottom: 70px;
  }
  .c-heading__secondary {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
}
.c-title__primary {
  background-color: #4662A2;
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 4px;
  padding: 10px 0;
  width: 100%;
}
.c-title__secondary {
  border-left: 3px solid #4662A2;
  color: #4662A2;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 0 0 10px;
  text-align: left;
  width: 100%;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-title__primary {
    font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 30px;
    padding: 15px 0;
  }
}
@media (min-width: 1025px) {
  .c-title__wrapper {
    padding: 40px 0;
  }
  .c-title__primary {
    font-size: 1.4em;
    line-height: 1.2em;
    margin-bottom: 40px;
    padding: 20px 0;
  }
}
.c-label--workshop, .c-label--report, .c-label--news, .c-label--life, .c-label--magazine {
  display: inline-block;
  line-height: 1em;
  text-align: center;
}
.c-label--workshop {
  background-color: #9abd77;
  color: #fff;
}
.c-label--report {
  background-color: #c68e8b;
  color: #fff;
}
.c-label--news {
  background-color: #88a7d7;
  color: #fff;
}
.c-label--life {
  background-color: #e3c13f;
  color: #fff;
}
.c-label--magazine {
  background-color: #f2a56a;
  color: #fff;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-label--workshop, .c-label--report, .c-label--news, .c-label--life, .c-label--magazine {
    border-radius: 2px;
    font-size: 0.7em;
    padding: 2px 4px;
  }
}
@media (min-width: 751px) {
  .c-label--workshop, .c-label--report, .c-label--news, .c-label--life, .c-label--magazine {
    border-radius: 4px;
    font-size: 0.8em;
    padding: 4px 6px;
  }
}
.c-line__split--1, .c-line__split--2 {
  border-bottom: 1px solid #ddd;
}
.c-line__split--1 hr, .c-line__split--2 hr {
  display: none;
}
.c-line__split--1 {
  margin-bottom: 35px;
  padding-top: 30px;
}
.c-line__split--2 {
  margin-bottom: 20px;
  padding-top: 15px;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-line--1 {
    background-size: auto 80px;
    height: 50px;
    margin: 20px 0;
  }
}
@media (min-width: 1025px) {
  .c-line--1 {
    background-size: auto 100px;
    height: 100px;
    margin: 60px 0;
  }
}
.c-link__more {
  align-items: center;
  display: flex;
  gap: 0 4px;
}
.c-link__more:hover {
  text-decoration: none;
}

.c-link__more:hover .c-link__text {
  text-decoration: underline;
}

.c-icon__container {
  align-items: center;
  display: flex;
  gap: 0 10px;
}
.c-icon__image {
  width: 25px;
}

.c-mainvisual__wrapper {
  align-items: flex-end;
  background-color: #F7FAFF;
  background-position: bottom left;
  background-size: cover;
  border-top: 1px solid #dee4f7;
  border-bottom: 1px solid #dee4f7;
  display: flex;
  height: 90px;
  justify-content: center;
}
.c-mainvisual__container {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 0 20px;
  height: 100%;
}
.c-mainvisual__title {
  align-items: center;
  color: #4662A2;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6em;
  height: 100%;
  letter-spacing: 0.1em;
}
.c-mainvisual__subtitle {
  color: #4662A2;
  font-weight: bold;
}
.c-mainvisual__illust {
  align-items: flex-end;
  display: flex;
  height: 100%;
  margin-left: -40px;
}
.c-mainvisual__illust img {
  height: 80%;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-mainvisual__wrapper {
    height: 150px;
  }
  .c-mainvisual__container {
    gap: 0 30px;
  }
}
@media (min-width: 1025px) {
  .c-mainvisual__wrapper {
    height: 160px;
  }
  .c-mainvisual__container {
    gap: 0 40px;
  }
}
.c-modal__wrapper {
  animation-name: modalopen;
  animation-duration: 0.2s;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}
.c-modal__isActive {
  display: block;
}
.c-modal__bg {
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.c-modal__closeBtn {
  cursor: pointer;
  position: absolute;
  top: -60px;
  right: -60px;
  width: 60px;
}
.c-modal__closeBtn:hover {
  transform: scale(1.1);
}
.c-modal__closeBtn:active {
  transform: scale(0.9);
}
.c-modal__container {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.8);
  height: 80%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.c-modal__containerInner {
  position: relative;
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalclose {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-modal__container {
    border-radius: 8px;
    padding: 30px;
  }
}
@media (min-width: 1025px) {
  .c-modal__container {
    border-radius: 10px;
    padding: 40px;
  }
}
.c-paginate__container {
  display: flex;
  justify-content: space-between;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-paginate__container {
    padding: 10px 0;
  }
}
@media (min-width: 1025px) {
  .c-paginate__container {
    padding: 20px 0;
  }
}
.c-paginationSingle {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
}
.c-paginationSingle__link {
  width: 30%;
}
.c-paginationSingle__prev {
  text-align: left;
}
.c-paginationSingle__prev a {
  justify-content: flex-start;
}
.c-paginationSingle__back {
  text-align: center;
}
.c-paginationSingle__back a {
  justify-content: center;
}
.c-paginationSingle__next {
  text-align: right;
}
.c-paginationSingle__next a {
  justify-content: flex-end;
}
.c-paginationSingle a {
  align-items: center;
  display: flex;
}
.c-paginationSingle a:hover {
  text-decoration: none;
}
.c-paginationSingle__text:hover {
  text-decoration: underline;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-paginationSingle {
    padding: 15px 0;
  }
}
@media (min-width: 1025px) {
  .c-paginationSingle {
    padding: 20px 0;
  }
}
.c-photo__general img {
  filter: drop-shadow(2px 4px 4px #ddd);
  border-radius: 6px;
}
.c-photo__general a img {
  transition: 0.3s;
}
.c-photo__general a:hover img {
  opacity: 0.8;
  transform: scale(105%);
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-photo__general {
    margin-bottom: 15px;
  }
  .c-photo__general img {
    border-radius: 8px;
  }
}
@media (min-width: 1025px) {
  .c-photo__general {
    margin-bottom: 20px;
  }
  .c-photo__general img {
    border-radius: 10px;
  }
}
.c-ribbon__wrapper {
  display: block;
  position: relative;
  box-sizing: border-box;
}
.c-ribbon__container {
  display: inline-block;
  position: absolute;
  top: -6px;
  right: 15px;
  margin: 0;
  padding: 4px 2px 2px 2px;
  z-index: 2;
  width: 50px;
  text-align: center;
  color: white;
  font-size: 0.7em;
  font-weight: bold;
  background-color: #fa8383;
  border-radius: 2px 0 0 0;
}
.c-ribbon__container:before {
  position: absolute;
  content: "";
  top: 0;
  right: -5px;
  border: none;
  border-bottom: solid 6px #d07676;
  border-right: solid 5px transparent;
}
.c-ribbon__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 3px solid #fa8383;
}

@media (min-width: 751px) {
  .c-ribbon__container {
    top: -6px;
    right: 15px;
    margin: 0;
    padding: 1px 2px 0 2px;
    width: 60px;
    font-size: 0.7em;
  }
  .c-ribbon__container:before {
    top: 0;
    right: -5px;
  }
  .c-ribbon__container:after {
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 3px solid #fa8383;
  }
}
.c-table__general {
  width: 100%;
}
.c-table__general th, .c-table__general td {
  border: none;
  font-size: 0.95em;
  font-weight: normal;
  padding: 5px 10px;
}
.c-table__general tr:last-child th,
.c-table__general tr:last-child td {
  border-bottom: none;
}
.c-table__td--heading {
  text-align: left;
}
.c-table__td--price {
  text-align: right;
}
.c-table__price {
  width: 100%;
}
.c-table__price th, .c-table__price td {
  border: 1px solid #e0d9d5;
  font-weight: normal;
  color: #333;
}
.c-table__price thead th, .c-table__price thead td {
  background-color: #FAF6F2;
}
.c-table__price--number {
  text-align: right;
}
.c-table__description {
  width: 100%;
}
.c-table__description th, .c-table__description td {
  border: 1px solid #e0d9d5;
  font-weight: normal;
  color: #333;
}
.c-table__description tbody tr th {
  background-color: #FAF6F2;
  text-align: left;
}
@media all and (min-width: 0) and (max-width: 750px) {
  .c-table__general tr {
    display: flex;
    flex-wrap: wrap;
  }
  .c-table__general th, .c-table__general td {
    width: 100%;
  }
  .c-table__general th {
    background-color: #efefef;
    border-radius: 3px;
  }
  .c-table__general td {
    margin-bottom: 15px;
  }
}
@media (min-width: 751px) {
  .c-table__general th, .c-table__general td {
    border-bottom: 1px solid #ddd;
    padding: 20px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-table__price th, .c-table__price td {
    padding: 10px;
  }
  .c-table__description th, .c-table__description td {
    padding: 10px;
  }
  .c-table__description th {
    width: 30%;
  }
  .c-table__description td {
    width: 70%;
  }
}
@media (min-width: 1025px) {
  .c-table__price th, .c-table__price td {
    padding: 10px 14px;
  }
  .c-table__description th, .c-table__description td {
    padding: 10px 14px;
  }
  .c-table__description th {
    width: 30%;
  }
  .c-table__description td {
    width: 70%;
  }
}
.c-text__general {
  text-align: center;
  margin-bottom: 40px;
}

.c-text__plate {
  border-radius: 8px;
  box-shadow: 0 0 2px rgba(100, 100, 100, 0.3);
  margin-bottom: 40px;
  padding: 15px 20px;
}

.c-text__date {
  align-items: center;
  color: #8794BD;
  display: flex;
  gap: 0 6px;
}
.c-text__date span.icon {
  color: #999;
}

.c-text__category {
  align-items: center;
  color: #666;
  display: flex;
  gap: 0 6px;
}

@media (min-width: 751px) {
  .c-text__general {
    margin-bottom: 60px;
  }
  .c-text__plate {
    border-radius: 8px;
    box-shadow: 0 0 2px rgba(100, 100, 100, 0.3);
    margin-bottom: 40px;
    padding: 20px 40px;
  }
}
.c-thumb__lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.c-thumb__list--2, .c-thumb__list--3, .c-thumb__list--4 {
  margin-bottom: 20px;
  width: 100%;
}
.c-thumb__photo {
  margin-bottom: 10px;
}
.c-thumb__box {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  padding: 20px;
  height: 100%;
}
.c-thumb__box:hover {
  cursor: pointer;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .c-thumb__list--2, .c-thumb__list--3, .c-thumb__list--4 {
    display: flex;
    justify-content: space-between;
  }
  .c-thumb__photo {
    width: 35%;
  }
  .c-thumb__contents {
    align-items: center;
    display: flex;
    width: 60%;
  }
}
@media (min-width: 751px) {
  .c-thumb__list--2 {
    width: 47.5%;
  }
  .c-thumb__list--3 {
    width: 30%;
  }
  .c-thumb__list--4 {
    width: 22%;
  }
  .c-thumb__lists--2::after {
    display: block;
    content: "";
    width: 47.5%;
  }
  .c-thumb__lists--3::after {
    display: block;
    content: "";
    width: 30%;
  }
  .c-thumb__lists--4::after {
    display: block;
    content: "";
    width: 22%;
  }
  .c-thumb__lists {
    margin-bottom: -40px;
  }
  .c-thumb__list--2, .c-thumb__list--3, .c-thumb__list--4 {
    margin-bottom: 40px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-thumb__box {
    border-radius: 8px;
    padding: 20px;
  }
}
@media (min-width: 1025px) {
  .c-thumb__box {
    border-radius: 10px;
    padding: 30px;
  }
}
.c-form__heading {
  color: #bbb;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  padding: 0 0 5px 0;
}
.c-form__heading i {
  padding-right: 3px;
}
.c-form__checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-form__checkbox input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.c-form__checkbox--name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #666;
  position: relative;
}
.c-form__checkbox--name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-right: 6px;
  flex-shrink: 0;
}
input:checked + .c-form__checkbox--name {
  color: #4662A2;
}
input:checked + .c-form__checkbox--name:before {
  border: 1px solid #4662A2;
  background-color: #4662A2;
}
input:checked + .c-form__checkbox--name:after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 0.4em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
}

.c-form__container {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__container {
    margin-bottom: 30px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .c-form__container {
    margin-bottom: 40px;
    padding-bottom: 10px;
  }
}
.c-form__error {
  clear: both;
  color: #ff0000;
  font-size: 0.9em;
}
.c-form__errorContainer {
  background: #fff2f4;
  border: 2px solid #ff0000;
  border-radius: 5px;
  color: #ff0000;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
}

.c-form__input.c-form__errorInput {
  background: rgba(255, 200, 200, 0.1);
  border: 1px solid #ff0000;
}

.c-form__input.c-form__errorInput::placeholder {
  color: #ff0000;
}

.c-form__textarea.c-form__errorInput {
  background: rgba(255, 200, 200, 0.1);
  border: 1px solid #ff0000;
}

.c-form__textarea.c-form__errorInput::placeholder {
  color: #ff0000;
}

.c-form__fields {
  display: flex;
}
.c-form__field {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-form__field--between {
  text-align: center;
}
.c-form__field--description {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.c-form__field--extends {
  text-align: center;
}
.c-form__field--widthHalf {
  width: 50%;
}
.c-form__field--widthThirds {
  width: 33%;
}
.c-form__field--widthQuarter {
  width: 25%;
}
.c-form__field--widthMax {
  width: 100%;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__field--between {
    padding: 12px 20px 0 20px;
  }
  .c-form__field--extends {
    padding: 12px 0 0 10px;
  }
}
@media (min-width: 1025px) {
  .c-form__field--between {
    padding: 12px 20px 0 20px;
  }
  .c-form__field--extends {
    padding: 12px 0 0 10px;
  }
}
.c-form__inputContainer {
  position: relative;
}
.c-form__input, .c-form__textarea, .c-form__number, .c-form__select {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 5px;
  color: #333;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.c-form__input {
  font-size: 1.1em;
  margin-bottom: 2px;
  padding: 8px 12px;
}
.c-form__textarea {
  font-size: 1.1em;
  padding: 8px 12px;
}
.c-form__input:focus, .c-form__textarea:focus, .c-form__number:focus, .c-form__select:focus {
  background: #F5F9F4;
  border: 1px solid #4662A2;
}
.c-form__input::placeholder, .c-form__textarea::placeholder {
  color: #bbb;
  font-weight: normal;
}
.c-form__input:focus-visible, .c-form__textarea:focus-visible {
  outline: 1px solid #4662A2;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__input {
    font-size: 1em;
    margin-bottom: 3px;
    padding: 10px 15px;
  }
  .c-form__textarea {
    font-size: 1em;
    margin-bottom: 3px;
    padding: 10px 15px;
  }
  .c-form__select {
    font-size: 1em;
    padding: 10px 5px;
  }
}
@media (min-width: 1025px) {
  .c-form__input {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
    margin-bottom: 3px;
    padding: 15px 20px;
  }
  .c-form__number {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
    margin-bottom: 3px;
    padding: 15px;
  }
  .c-form__textarea {
    font-size: 1.2em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
    margin-bottom: 3px;
    padding: 15px 20px;
  }
  .c-form__select {
    font-size: 1.2em;
    padding: 15px 20px;
  }
}
.c-form__label {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 5px;
}
.c-form__label p {
  align-items: center;
  display: flex;
  gap: 0 10px;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__label {
    font-size: 1.1em;
    margin-bottom: 6px;
  }
}
@media (min-width: 1025px) {
  .c-form__label {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
}
.c-form__links {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 500;
}
.c-form__link {
  background: #fff;
  border: 1px solid #4D77D6;
  border-radius: 0 0 2px 2px;
  color: #4662A2;
  font-size: 0.85em;
  padding: 10px;
}
.c-form__link i {
  padding-right: 5px;
}
.c-form__link:hover {
  background: #4662A2;
  border: 1px solid #4662A2;
  color: #fff;
}

.c-form__must {
  background: #cc0000;
  border-radius: 3px;
  color: #fff;
  font-size: 0.6em;
  padding: 0 8px;
}

.c-form__privacy {
  border: 2px solid #eee;
  border-radius: 5px;
  height: 200px;
  overflow: auto;
  padding: 10px 20px;
}
.c-form__privacyCheck {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__privacy {
    padding: 10px 20px;
  }
}
@media (min-width: 1025px) {
  .c-form__privacy {
    padding: 10px 30px;
  }
  .c-form__privacyCheck {
    padding: 30px 0;
  }
}
.c-form__radio {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 14px 5px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-form__radio input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.c-form__radio--name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #666;
}
.c-form__radio--name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.c-form__radio--label {
  margin-bottom: 8px;
}
input:checked + .c-form__radio--name {
  color: #4662A2;
}
input:checked + .c-form__radio--name:before {
  border: 0.35em solid #4662A2;
}

@media (min-width: 751px) {
  .c-form__radio {
    border-radius: 6px;
    padding: 20px 20px 13px 20px;
  }
}
.c-form__submitArea {
  text-align: center;
  margin-left: 40px;
  width: 100%;
}
.c-form__submitBtn {
  background: none;
  border: none;
  background: #4662A2;
  color: #fff;
  cursor: pointer;
  display: inline;
  font-size: 1em;
  font-weight: bold;
  border-radius: 30px;
  padding: 15px 40px;
}
.c-form__submitBtn:hover {
  background: #4D77D6;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-form__submitBtn:active {
  background: #1E366E;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  .c-form__submitBtn {
    font-size: 1em;
    padding: 15px 60px;
  }
}
@media (min-width: 1025px) {
  .c-form__submitBtn {
    font-size: 1.1em;
    letter-spacing: 0.1em;
    border-radius: 40px;
    padding: 20px 60px;
  }
}
.c-form__ex {
  color: #777;
  font-size: 0.9em;
}

.c-form__file {
  padding: 10px 3px 3px 0;
}
.c-form__imageUploadedArea {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-height: 200px;
  width: 100%;
}
.c-form__imageInputArea {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 5px 10px 10px 10px;
}

.l-wrapper {
  width: 100%;
}
.l-wrapper--s {
  padding: 10px 0;
}
.l-wrapper--m {
  padding: 20px 0;
}
.l-wrapper--l {
  padding: 30px 0;
}
.l-wrapper--xl {
  padding: 30px 0;
}

.l-container {
  width: 100%;
}
.l-container__wrapper {
  padding: 20px 0;
}
.l-container--s, .l-container--m, .l-container--l, .l-container--xl {
  padding: 0 10px;
}

.l-article {
  width: 100%;
}

.l-section {
  width: 100%;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .l-article {
    padding: 40px 10px;
  }
}
@media (min-width: 751px) {
  .l-wrapper__bg--1 {
    background-size: 100% auto;
    background-position: top left;
  }
  .l-wrapper--s {
    padding: 20px 0;
  }
  .l-wrapper--m {
    padding: 40px 0;
  }
  .l-wrapper--l {
    padding: 60px 0;
  }
  .l-container__wrapper {
    padding: 40px 0;
  }
  .l-container--s {
    margin: 0 auto;
    width: 100%;
    max-width: 680px;
  }
  .l-container--m {
    margin: 0 auto;
    width: 100%;
    max-width: 860px;
  }
  .l-container--l {
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;
  }
  .l-container--xl {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .l-container {
    max-width: 1024px;
  }
  .l-container--s, .l-container--m, .l-container--l, .l-container--xl {
    padding: 0 20px;
  }
  .l-article {
    padding: 50px 20px;
  }
}
@media (min-width: 1025px) {
  .l-container {
    max-width: 1024px;
  }
  .l-container--s, .l-container--m, .l-container--l, .l-container--xl {
    padding: 0 40px;
  }
  .l-article {
    padding: 60px 0;
  }
}
.l-footer__wrapper {
  background-color: #4662A2;
  background-image: url(../img/base/footer-bg.png);
  background-position: bottom left;
  background-size: cover;
  height: 100%;
}
.l-footer__container {
  position: relative;
  width: 100%;
}
.l-footer__copyright {
  color: #fff;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  z-index: 10;
}
.l-footer__logo a {
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
}
.l-footer__logo a:hover {
  opacity: 0.8;
}
.l-footer__menus {
  display: flex;
  flex-wrap: wrap;
}
.l-footer__menulist {
  text-decoration: none;
  line-height: 2em;
}
.l-footer__menulist a {
  align-items: center;
  display: flex;
  color: #fff;
  text-decoration: none;
}
.l-footer__menulist a:hover .l-footer__link {
  opacity: 0.8;
  text-decoration: underline;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .l-footer__wrapper {
    min-height: 500px;
  }
  .l-footer__container {
    padding: 20px;
  }
  .l-footer__logo {
    margin-bottom: 10px;
  }
  .l-footer__menulist {
    margin-top: 6px;
  }
}
@media (min-width: 751px) {
  .l-footer__container {
    margin: 0 auto;
    padding: 10px;
  }
  .l-footer__menus {
    justify-content: center;
    width: 100%;
  }
  .l-footer__menulists {
    display: flex;
  }
  .l-footer__logo {
    font-size: 1.3em;
    text-align: center;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .l-footer__container {
    min-height: 150px;
    padding: 20px 0;
  }
  .l-footer__logo {
    margin-bottom: 20px;
  }
  .l-footer__menulists {
    gap: 0 15px;
  }
  .l-footer__menulist {
    font-size: 0.85em;
  }
}
@media (min-width: 1025px) {
  .l-footer__container {
    min-height: 200px;
    max-width: 1024px;
    padding: 40px 0;
  }
  .l-footer__logo {
    margin-bottom: 30px;
  }
  .l-footer__menulists {
    gap: 0 30px;
  }
}
.l-gnav__container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.l-gnav__menulist {
  font-weight: bold;
  line-height: 1em;
}
.l-gnav__btn {
  background-color: #4662A2;
  border-radius: 4px;
  color: #fff;
}
.l-gnav__btn:hover {
  background-color: #4D77D6;
  color: #fff;
  text-decoration: none;
}

@media all and (min-width: 0) and (max-width: 750px) {
  .l-gnav__container {
    width: 85%;
  }
  .l-gnav__menulists {
    display: none;
  }
  .l-gnav__contact {
    width: 30%;
  }
}
@media (min-width: 751px) {
  .l-gnav__container {
    display: block;
    width: 100%;
  }
  .l-gnav__menulists {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .l-gnav__menulists {
    gap: 0 14px;
    padding: 10px 20px;
  }
  .l-gnav__menulist a {
    font-size: 0.75em;
  }
  .l-gnav__btn {
    padding: 4px 6px;
  }
}
@media (min-width: 1025px) {
  .l-gnav__menulists {
    gap: 0 22px;
    padding: 20px 40px;
  }
  .l-gnav__menulist a {
    font-size: 0.8em;
  }
  .l-gnav__btn {
    padding: 5px 7px;
  }
}
@media (min-width: 1200px) {
  .l-gnav__menulist a {
    font-size: 0.86em;
  }
  .l-gnav__btn {
    padding: 6px 10px;
  }
}
.l-gnavSpBtn {
  position: fixed;
  left: 10px;
  top: 10px;
  width: 30px;
  height: 40px;
  cursor: pointer;
  z-index: 450;
  display: block;
  transition: all 0.5s;
}
.l-gnavSpBtn__line {
  position: absolute;
  width: 40px;
  height: 3px;
  left: 0;
  background-color: #4662A2;
  transition: all 0.5s;
}
.l-gnavSpBtn__line--1 {
  top: 1px;
}
.l-gnavSpBtn__line--2 {
  top: 12px;
}
.l-gnavSpBtn__line--3 {
  top: 24px;
}

.l-gnavSpBtn:active {
  opacity: 0.3;
}

.l-gnavSp__Container {
  position: fixed;
  left: -100%;
  top: 0;
  width: 70%;
  height: 100vh;
  background-color: #fff;
  padding: 80px 0 0 0;
  transition: all 0.5s;
  z-index: 400;
  overflow-y: auto;
}
.l-gnavSp__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}
.l-gnavSp__menulists {
  width: 100%;
}
.l-gnavSp__menulist a {
  border-bottom: 1px solid #eee;
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}
.l-gnavSp__menulist a:active {
  background-color: #4662A2;
  color: #fff;
}

.l-gnavSp__open .l-gnavSpBtn__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}
.l-gnavSp__open .l-gnavSpBtn__line--2 {
  opacity: 0;
}
.l-gnavSp__open .l-gnavSpBtn__line--3 {
  transform: rotate(45deg);
  top: 11px;
}
.l-gnavSp__open .l-gnavSp__Container {
  left: 0;
}
.l-gnavSp__open .l-gnavSp__bg {
  opacity: 0.5;
  visibility: visible;
}
.l-gnavSp__open l-gnavSp__bg:active {
  opacity: 0.3;
}

.l-header__wrapper {
  background-color: #fff;
  width: 100%;
}
.l-header__container {
  width: 100%;
}
@media all and (min-width: 0) and (max-width: 750px) {
  .l-header__wrapper {
    display: none;
  }
}
@media (min-width: 751px) {
  .l-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
  }
  .l-header__logo img {
    transition: 0.3s;
  }
  .l-header__logo a:hover img {
    opacity: 0.8;
    transform: scale(1.1);
  }
  .l-header__menus {
    align-items: center;
    display: flex;
    justify-content: flex-end;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .l-header__wrapper {
    padding: 10px;
  }
  .l-header__container {
    padding: 0;
  }
  .l-header__logo {
    width: 160px;
  }
  .l-header__menus {
    gap: 0 10px;
  }
}
@media (min-width: 1025px) {
  .l-header__wrapper {
    padding: 0 20px;
  }
  .l-header__container {
    max-width: 1130px;
  }
  .l-header__logo {
    width: 200px;
  }
  .l-header__menus {
    gap: 0 12px;
  }
}
@media (min-width: 1200px) {
  .l-header__logo {
    width: 260px;
  }
}
.l-headerSp__wrapper {
  width: 100%;
}
.l-headerSp__container {
  height: 50px;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}
.l-headerSp__contents {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 60px;
  width: 100%;
}
.l-headerSp__logo {
  margin-left: 10px;
  transition: 0.3s;
  width: 220px;
}
.l-headerSp__logo:active {
  opacity: 0.8;
  transform: scale(1.2);
}

@media all and (min-width: 0) and (max-width: 750px) {
  .l-headerSp__wrapper {
    background-color: #fff;
    display: block;
  }
}
@media (min-width: 751px) {
  .l-headerSp__wrapper {
    display: none;
  }
}
body.error404 .i-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
}

@media (min-width: 751px) {
  body.error404 .i-wrapper {
    text-align: center;
    margin-bottom: 60px;
    padding: 80px 0;
  }
}
body.about .i-greeting__wrapper {
  padding: 40px 0;
}
body.about .i-about__wrapper {
  background-color: #E5E7DC;
  padding: 40px 0;
}
body.about .i-about__title {
  font-size: 2em;
  margin-bottom: 60px;
  text-align: center;
}
body.about .i-about__lists {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
}
body.about .i-about__list figure {
  margin-bottom: 5px;
}
body.about .i-about__list img {
  width: 100%;
}
body.about .i-about__list img:hover {
  opacity: 0.8;
}
body.about .i-about__lists2 {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
}
body.about .i-about__list2 {
  align-items: center;
  display: flex;
  gap: 10px;
  line-height: 1em;
  margin-bottom: 10px;
}
body.about .i-about__list2 figure {
  margin-bottom: 5px;
}
body.about .i-about__list2 img {
  width: 100%;
}
body.about .i-access__wrapper {
  padding: 40px 0;
}
body.about .i-access__title {
  font-size: 2em;
  margin-bottom: 60px;
  text-align: center;
}
body.about .i-access__map {
  height: 300px;
  margin-bottom: 40px;
}
body.about .i-access__map iframe {
  border: none;
}
body.about .i-docs__container {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  display: flex;
  gap: 6px 0;
  flex-wrap: wrap;
  padding: 15px;
}
body.about .i-docs__link {
  align-items: center;
  display: flex;
  gap: 0 2px;
  width: 100%;
}
body.about .i-docs__link a {
  align-items: center;
  display: flex;
  gap: 0 3px;
}
body.about .i-docs__icon {
  height: 20px;
  width: 20px;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.about .i-about__lists {
    margin: 10px 0 20px 0;
    padding: 20px 20px 10px 20px;
  }
  body.about .i-about__list a {
    display: flex;
    gap: 0 10px;
  }
  body.about .i-about__list img {
    width: 20px;
  }
  body.about .i-about__lists2 {
    margin: 10px 0 20px 0;
    padding: 20px 20px 10px 20px;
  }
  body.about .i-about__list2 figure, body.about .i-about__list2 img {
    width: 100%;
  }
  body.about .i-about__list2Icon {
    width: 20px;
  }
  body.about .i-about__list2Text {
    width: 90%;
  }
  body.about .i-greeting__photo {
    margin: 0 auto 30px auto;
    width: 60%;
  }
  body.about .i-docs__link span {
    font-size: 0.8em;
  }
}
@media (min-width: 751px) {
  body.about .i-about__lists {
    display: flex;
    justify-content: center;
    gap: 0 10%;
    margin: 20px auto;
    padding: 20px;
  }
  body.about .i-about__list {
    text-align: center;
  }
  body.about .i-about__lists2 {
    padding: 20px;
  }
  body.about .i-about__list2 {
    line-height: 1.3em;
  }
  body.about .i-about__list2 figure {
    margin-bottom: 14px;
  }
  body.about .i-about__list2Icon {
    width: 30px;
  }
  body.about .i-about__list2Text {
    width: 93%;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.about .i-greeting__wrapper {
    padding: 60px 0;
  }
  body.about .i-about__wrapper {
    padding: 60px 0;
  }
  body.about .i-access__wrapper {
    padding: 60px 0;
  }
  body.about .i-access__map {
    height: 350px;
  }
}
@media (min-width: 1025px) {
  body.about .i-greeting__wrapper {
    padding: 80px 0;
  }
  body.about .i-about__wrapper {
    padding: 80px 0;
  }
  body.about .i-access__wrapper {
    padding: 80px 0;
  }
  body.about .i-access__map {
    height: 400px;
  }
}
body.contact {
  background-color: #f7f8f4;
}
body.contact .i-contents__wrapper {
  padding: 20px 0;
}
body.contact .i-contents__container {
  margin-bottom: 20px;
}
body.contact .i-contents__heading {
  color: #4662A2;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (min-width: 751px) {
  body.contact .i-contents__wrapper {
    padding: 40px 0;
  }
  body.contact .i-contents__container {
    margin-bottom: 40px;
  }
}
body.contact_thanks {
  background-color: #f7f8f4;
}
body.contact_thanks .i-contents__wrapper {
  padding: 20px 0;
}
body.contact_thanks .i-contents__container {
  margin-bottom: 20px;
}
body.contact_thanks .i-contents__heading {
  color: #4662A2;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.contact_thanks .i-contents__back {
  padding: 40px 0 0 0;
  text-align: center;
}

@media (min-width: 751px) {
  body.contact_thanks .i-contents__wrapper {
    padding: 40px 0;
  }
  body.contact_thanks .i-contents__container {
    margin-bottom: 40px;
  }
}
body.post-type-archive-enquete {
  background-color: #f7f8f4;
}
body.post-type-archive-enquete .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.post-type-archive-enquete .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.post-type-archive-enquete .i-article__heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.post-type-archive-enquete .i-article__heading a {
  color: #4662A2;
}
body.post-type-archive-enquete .i-article__heading a:hover {
  color: #4D77D6;
}
body.post-type-archive-enquete .i-article__date {
  font-weight: bold;
}
body.post-type-archive-enquete .i-article__more {
  padding-top: 10px;
  text-align: center;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.post-type-archive-enquete .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.post-type-archive-enquete .i-article__heading {
    margin-bottom: 15px;
    line-height: 1.4em;
  }
}
@media (min-width: 1025px) {
  body.post-type-archive-enquete .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.post-type-archive-enquete .i-article__heading {
    line-height: 1.4em;
    margin-bottom: 20px;
  }
}
body.single-enquete {
  background-color: #f7f8f4;
}
body.single-enquete .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.single-enquete .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.single-enquete .i-article__heading {
  color: #4662A2;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.single-enquete .i-article__heading a {
  color: #4662A2;
}
body.single-enquete .i-article__heading a:hover {
  color: #4D77D6;
}
body.single-enquete .i-article__date {
  font-weight: bold;
}
body.single-enquete .i-paginate__container {
  padding: 20px 0;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-enquete .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
}
@media (min-width: 1025px) {
  body.single-enquete .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.single-enquete .i-article__container {
    margin-bottom: 20px;
  }
  body.single-enquete .i-article__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
}
body.category,
body.post-type-archive-post {
  background-color: #f7f8f4;
}
body.category .i-article__wrapper,
body.post-type-archive-post .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.category .i-article__container,
body.post-type-archive-post .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.category .i-article__heading,
body.post-type-archive-post .i-article__heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.category .i-article__heading a,
body.post-type-archive-post .i-article__heading a {
  color: #4662A2;
}
body.category .i-article__heading a:hover,
body.post-type-archive-post .i-article__heading a:hover {
  color: #4D77D6;
}
body.category .i-article__date,
body.post-type-archive-post .i-article__date {
  font-weight: bold;
}
body.category .i-article__text,
body.post-type-archive-post .i-article__text {
  margin-bottom: 10px;
}
body.category .i-article__more,
body.post-type-archive-post .i-article__more {
  padding-top: 10px;
  text-align: center;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.category .i-article__wrapper,
  body.post-type-archive-post .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.category .i-article__container,
  body.post-type-archive-post .i-article__container {
    border-radius: 8px;
    margin-bottom: 40px;
  }
  body.category .i-article__heading,
  body.post-type-archive-post .i-article__heading {
    line-height: 1.4em;
    margin-bottom: 10px;
  }
  body.category .i-article__text,
  body.post-type-archive-post .i-article__text {
    margin-bottom: 5px;
  }
  body.category .i-article__more,
  body.post-type-archive-post .i-article__more {
    padding-top: 12px;
  }
}
@media (min-width: 1025px) {
  body.category .i-article__wrapper,
  body.post-type-archive-post .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.category .i-article__container,
  body.post-type-archive-post .i-article__container {
    border-radius: 10px;
    margin-bottom: 50px;
  }
  body.category .i-article__heading,
  body.post-type-archive-post .i-article__heading {
    line-height: 1.4em;
    margin-bottom: 25px;
  }
  body.category .i-article__date,
  body.post-type-archive-post .i-article__date {
    margin-bottom: 5px;
  }
  body.category .i-article__text,
  body.post-type-archive-post .i-article__text {
    margin-bottom: 10px;
  }
  body.category .i-article__more,
  body.post-type-archive-post .i-article__more {
    padding-top: 15px;
  }
}
body.single-post {
  background-color: #f7f8f4;
}
body.single-post .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.single-post .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 30px;
}
body.single-post .i-article__heading {
  color: #4662A2;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.single-post .i-article__date {
  font-weight: bold;
}
body.single-post .i-article__text {
  margin-bottom: 20px;
}
body.single-post .i-article__text p {
  margin-bottom: 10px;
}
body.single-post .i-article__text ol li {
  list-style-type: number;
}
body.single-post .i-article__text ul li {
  list-style-type: disc;
}
body.single-post .i-article__text h2.wp-block-heading {
  color: #4662A2;
  font-size: 1.5em;
  margin: 20px 0 5px 0;
}
body.single-post .i-article__text h3.wp-block-heading {
  font-size: 1.4em;
}
body.single-post .i-article__text h4.wp-block-heading {
  font-size: 1.3em;
}
body.single-post .i-files__container {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px 20px 10px 20px;
}
body.single-post .i-files__heading {
  background-color: #4662A2;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 0 6px;
}
body.single-post .i-files__lists {
  margin: 0;
  padding: 0;
}
body.single-post .i-files__list {
  font-size: 0.9em;
  margin: 0 0 10px 0;
  padding: 0;
}
body.single-post .i-paginate__container {
  padding: 20px 0;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-post .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.single-post .i-article__text p {
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  body.single-post .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.single-post .i-article__container {
    margin-bottom: 20px;
  }
  body.single-post .i-article__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  body.single-post .i-article__text p {
    margin-bottom: 20px;
  }
}
body.tax-report_category,
body.post-type-archive-report {
  background-color: #f7f8f4;
}
body.tax-report_category .i-article__wrapper,
body.post-type-archive-report .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.tax-report_category .i-article__container,
body.post-type-archive-report .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.tax-report_category .i-article__heading,
body.post-type-archive-report .i-article__heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.tax-report_category .i-article__heading a,
body.post-type-archive-report .i-article__heading a {
  color: #4662A2;
}
body.tax-report_category .i-article__heading a:hover,
body.post-type-archive-report .i-article__heading a:hover {
  color: #4D77D6;
}
body.tax-report_category .i-article__date,
body.post-type-archive-report .i-article__date {
  font-weight: bold;
}
body.tax-report_category .i-article__more,
body.post-type-archive-report .i-article__more {
  padding-top: 10px;
  text-align: center;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.tax-report_category .i-article__wrapper,
  body.post-type-archive-report .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.tax-report_category .i-article__heading,
  body.post-type-archive-report .i-article__heading {
    margin-bottom: 15px;
    line-height: 1.4em;
  }
}
@media (min-width: 1025px) {
  body.tax-report_category .i-article__wrapper,
  body.post-type-archive-report .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.tax-report_category .i-article__heading,
  body.post-type-archive-report .i-article__heading {
    line-height: 1.4em;
    margin-bottom: 20px;
  }
}
body.single-report {
  background-color: #f7f8f4;
}
body.single-report .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.single-report .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.single-report .i-article__heading {
  color: #4662A2;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.single-report .i-article__heading a {
  color: #4662A2;
}
body.single-report .i-article__heading a:hover {
  color: #4D77D6;
}
body.single-report .i-article__date {
  font-weight: bold;
}
body.single-report .i-article__text {
  margin-bottom: 20px;
}
body.single-report .i-article__text p {
  margin-bottom: 8px;
}
body.single-report .i-article__text ol {
  margin: 0 0 0 20px;
}
body.single-report .i-article__text ol li {
  list-style-type: number;
}
body.single-report .i-article__text ul {
  margin: 0 0 0 20px;
}
body.single-report .i-article__text ul li {
  list-style-type: disc;
}
body.single-report .i-article__text h2.wp-block-heading {
  color: #4662A2;
  font-size: 1.5em;
  margin: 20px 0 5px 0;
}
body.single-report .i-article__text h3.wp-block-heading {
  font-size: 1.4em;
}
body.single-report .i-article__text h4.wp-block-heading {
  font-size: 1.3em;
}
body.single-report .i-files__container {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px 20px 10px 20px;
}
body.single-report .i-files__heading {
  background-color: #4662A2;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 0 6px;
}
body.single-report .i-files__lists {
  margin: 0;
  padding: 0;
}
body.single-report .i-files__list {
  font-size: 0.9em;
  margin: 0 0 5px 0;
  padding: 0;
}
body.single-report .i-paginate__container {
  padding: 20px 0;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-report .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.single-report .i-article__text p {
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  body.single-report .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.single-report .i-article__container {
    margin-bottom: 20px;
  }
  body.single-report .i-article__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  body.single-report .i-article__text p {
    margin-bottom: 20px;
  }
}
body.home .i-heading__primary {
  color: #4662A2;
  font-weight: bold;
  font-size: 2em;
}
body.home .i-heading__primary a {
  color: #4662A2;
  margin: 0;
  padding: 0;
}
body.home .i-heading__primary a:hover {
  color: #4D77D6;
}
body.home .i-heading__primary small {
  color: #333;
  font-size: 0.5em;
}
body.home .i-title__primary {
  color: #4662A2;
  font-size: 2em;
  margin-bottom: 5px;
  text-align: center;
}
body.home .i-title__secondary {
  font-size: 0.9em;
  margin-bottom: 20px;
  text-align: center;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-heading__wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0 20px;
  }
  body.home .i-heading__primary {
    line-height: 0.8em;
  }
  body.home .i-heading__primary small {
    padding-left: 3px;
  }
}
@media (min-width: 751px) {
  body.home .i-heading__wrapper {
    margin-bottom: 30px;
  }
  body.home .i-heading__primary {
    text-align: center;
  }
  body.home .i-news__text {
    line-height: 1.4em;
  }
}
@media (min-width: 1025px) {
  body.home .i-event__wrapper {
    padding: 80px 0;
  }
}
body.home .i-report__wrapper {
  background-color: #f7f8f4;
  border-top: 1px solid #E5E7DC;
  padding: 40px 0;
}
body.home .i-report__lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: stretch;
  height: 100%;
}
body.home .i-report__box {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  height: 100%;
  padding: 20px;
  width: 100%;
}
body.home .i-report__heading {
  font-size: 1.3em;
  margin-bottom: 10px;
}
body.home .i-report__text {
  margin-bottom: 15px;
}
body.home .i-report__text p {
  margin-bottom: 10px;
}
body.home .i-report__spec {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
}
body.home .i-report__specHeading {
  background-color: #4662A2;
  border-radius: 2px;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 12px;
}
body.home .i-report__ribbon {
  height: 100%;
}
body.home .i-report__more {
  text-align: center;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-heading__wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0 20px;
  }
  body.home .i-report__list {
    margin-bottom: 10px;
    width: 100%;
  }
  body.home .i-report__illust {
    display: none;
  }
  body.home .i-report__illustSP {
    display: flex;
  }
  body.home .i-report__illustSP img {
    width: 60px;
  }
}
@media (min-width: 751px) {
  body.home .i-report__illust {
    display: flex;
    justify-content: flex-end;
  }
  body.home .i-report__illustSP {
    display: none;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-report__wrapper {
    padding: 60px 0;
  }
  body.home .i-report__lists {
    gap: 0 1%;
  }
  body.home .i-report__list {
    margin-bottom: 20px;
    width: 49%;
  }
  body.home .i-report__heading {
    font-size: 1.3em;
  }
  body.home .i-report__illust {
    margin: -60px auto -60px auto;
  }
  body.home .i-report__illust img {
    width: 80px;
  }
}
@media (min-width: 1025px) {
  body.home .i-report__wrapper {
    padding: 80px 0;
  }
  body.home .i-report__lists {
    gap: 0 1%;
  }
  body.home .i-report__list {
    margin-bottom: 20px;
    width: 49%;
  }
  body.home .i-report__heading {
    font-size: 1.2em;
  }
  body.home .i-report__illust {
    margin: -40px auto -80px auto;
  }
  body.home .i-report__illust img {
    width: 100px;
  }
}
body.home .i-mainvisual__wrapper {
  background-color: #4662A2;
  background-image: url(../img/pages/home/mainvisual-bg.png);
  width: 100%;
}
body.home .i-mainvisual__photoWrapper {
  overflow: hidden;
  position: relative;
}
body.home .i-mainvisual__photoContainer {
  display: flex;
}
body.home .i-mainvisual__photos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.home .i-mainvisual__photo {
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
body.home .i-mainvisual__illust img {
  width: 100%;
}

@media all and (min-width: 0) and (max-width: 480px) {
  body.home .i-mainvisual__wrapper {
    height: 350px;
    width: 100%;
  }
  body.home .i-mainvisual__container {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  body.home .i-mainvisual__photoWrapper {
    height: 230px;
    margin-bottom: 10px;
  }
  body.home .i-mainvisual__photoContainer {
    gap: 0 4%;
    padding: 0 3%;
    width: 100%;
  }
  body.home .i-mainvisual__titles {
    align-items: flex-end;
    display: flex;
    height: 120px;
    gap: 0 5%;
    justify-content: space-between;
    padding: 10px 14px;
    width: 100%;
  }
  body.home .i-mainvisual__illust {
    margin-bottom: -15px;
  }
}
@media all and (min-width: 481px) and (max-width: 750px) {
  body.home .i-mainvisual__wrapper {
    height: 300px;
    width: 100%;
  }
  body.home .i-mainvisual__container {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
    height: 100%;
  }
  body.home .i-mainvisual__photoWrapper {
    height: 100%;
    width: 60%;
  }
  body.home .i-mainvisual__photoContainer {
    gap: 0 4%;
    padding: 0 3%;
    width: 100%;
  }
  body.home .i-mainvisual__titles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
  }
  body.home .i-mainvisual__illust {
    margin: 0 auto -10px auto;
    width: 55%;
  }
}
@media (min-width: 751px) {
  body.home .i-mainvisual__wrapper {
    width: 100%;
  }
  body.home .i-mainvisual__container {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
    height: 100%;
  }
  body.home .i-mainvisual__photoWrapper {
    height: 100%;
    width: 65%;
  }
  body.home .i-mainvisual__photoContainer {
    gap: 0 4%;
    padding: 0 3%;
    width: 100%;
  }
  body.home .i-mainvisual__titles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35%;
  }
  body.home .i-mainvisual__title {
    margin: 0 auto;
    width: 90%;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-mainvisual__wrapper {
    height: 400px;
  }
  body.home .i-mainvisual__titles {
    height: 80%;
  }
  body.home .i-mainvisual__illust {
    margin: 0 auto -10px auto;
    width: 50%;
  }
}
@media (min-width: 1025px) {
  body.home .i-mainvisual__wrapper {
    height: 450px;
  }
  body.home .i-mainvisual__container {
    max-width: 1024px;
  }
  body.home .i-mainvisual__titles {
    height: 70%;
  }
  body.home .i-mainvisual__illust {
    margin: 0 auto -10px auto;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  body.home .i-mainvisual__wrapper {
    height: 550px;
  }
  body.home .i-mainvisual__container {
    max-width: 1280px;
  }
  body.home .i-mainvisual__titles {
    height: 70%;
  }
}
body.home .i-news__wrapper {
  padding: 40px 0;
}
body.home .i-news__title {
  align-items: center;
  display: flex;
  gap: 0 20px;
}
body.home .i-news__heading {
  color: #4662A2;
  font-size: 2em;
  line-height: 0.8em;
}
body.home .i-news__heading small {
  color: #333;
  font-size: 0.5em;
  padding-left: 2px;
}
body.home .i-news__illust {
  width: 60px;
}
body.home .i-news__contents {
  width: 100%;
}
body.home .i-news__lists {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
  padding-top: 5px;
  width: 100%;
}
body.home .i-news__list {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 5px 10px 5px;
}
body.home .i-news__date {
  color: #666;
  font-size: 0.9em;
}
body.home .i-news__category span {
  border: 1px solid #4662A2;
  border-radius: 20px;
  color: #4662A2;
  display: inline-block;
  font-size: 0.6em;
  font-weight: bold;
  padding: 0 10px;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-news__title {
    flex-direction: row-reverse;
    margin: 0 auto;
    width: 200px;
  }
  body.home .i-news__heading {
    margin-left: -40px;
  }
  body.home .i-news__illust {
    margin-left: -40px;
  }
  body.home .i-news__more {
    text-align: center;
  }
}
@media (min-width: 751px) {
  body.home .i-news__container {
    display: flex;
    justify-content: space-between;
  }
  body.home .i-news__title {
    position: relative;
    width: 20%;
  }
  body.home .i-news__heading {
    min-height: 250px;
  }
  body.home .i-news__contents {
    width: 70%;
  }
  body.home .i-news__lists {
    margin-bottom: 30px;
    padding-top: 10px;
  }
  body.home .i-news__list {
    margin-bottom: 10px;
    padding: 10px 10px 20px 10px;
  }
  body.home .i-news__list a {
    align-items: center;
    display: flex;
    gap: 0 2%;
    width: 100%;
  }
  body.home .i-news__date {
    line-height: 1.4em;
    min-width: 130px;
  }
  body.home .i-news__illust {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-news__wrapper {
    padding: 60px 0 0 0;
  }
  body.home .i-news__contents {
    padding-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  body.home .i-news__wrapper {
    padding: 80px 0 0 0;
  }
  body.home .i-news__contents {
    padding-bottom: 80px;
  }
}
body.home .i-magazine__wrapper {
  border-top: 1px solid #E5E7DC;
  padding: 40px 0;
}
body.home .i-magazine__list {
  background-color: #f7f8f4;
  border-radius: 6px;
  box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.3);
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  justify-content: space-between;
}
body.home .i-magazine__icon {
  background-color: #4662A2;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.7em;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 4px;
  padding: 4px 8px;
}
body.home .i-magazine__heading {
  border-bottom: 1px solid #ddd;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
body.home .i-magazine__heading--primary {
  color: #4662A2;
  font-weight: bold;
}
body.home .i-magazine__photos {
  display: flex;
  justify-content: space-between;
}
body.home .i-magazine__photos {
  width: 30%;
}
body.home .i-magazine__description {
  width: 65%;
}
body.home .i-magazine__text {
  margin-bottom: 5px;
}
body.home .i-magazine__ps {
  font-size: 0.8em;
}
body.home .i-magazine__more {
  text-align: center;
  padding: 20px 0 0 0;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-magazine__heading--primary {
    font-size: 1.3em;
  }
  body.home .i-magazine__illust {
    display: none;
  }
  body.home .i-magazine__illustSP {
    display: flex;
  }
  body.home .i-magazine__illustSP img {
    width: 60px;
  }
}
@media (min-width: 751px) {
  body.home .i-magazine__lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body.home .i-magazine__list {
    width: 48.5%;
  }
  body.home .i-magazine__illust {
    display: flex;
    justify-content: flex-end;
  }
  body.home .i-magazine__illustSP {
    display: none;
  }
  body.home .i-magazine__photos {
    gap: 0 -6%;
  }
  body.home .i-magazine__photo--secondary {
    margin: 20px 0 0 -20px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-magazine__wrapper {
    padding: 60px 0;
  }
  body.home .i-magazine__lists {
    gap: 15px 2%;
  }
  body.home .i-magazine__heading {
    margin-bottom: 10px;
  }
  body.home .i-magazine__heading--primary {
    font-size: 1.1em;
    line-height: 1.2em;
    margin-bottom: 6px;
  }
  body.home .i-magazine__photos {
    width: 35%;
  }
  body.home .i-magazine__description {
    line-height: 1.4em;
    width: 60%;
  }
  body.home .i-magazine__more {
    padding: 40px 0 0 0;
  }
  body.home .i-magazine__illust {
    margin: -60px auto -72px auto;
  }
  body.home .i-magazine__illust img {
    width: 80px;
  }
}
@media (min-width: 1025px) {
  body.home .i-magazine__wrapper {
    padding: 80px 0;
  }
  body.home .i-magazine__lists {
    gap: 15px 2%;
  }
  body.home .i-magazine__heading {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  body.home .i-magazine__heading--primary {
    font-size: 1.1em;
    line-height: 1.2em;
    margin-bottom: 6px;
  }
  body.home .i-magazine__heading--secondary {
    font-size: 0.9em;
    line-height: 1.3em;
  }
  body.home .i-magazine__photos {
    width: 33%;
  }
  body.home .i-magazine__description {
    line-height: 1.4em;
    width: 60%;
  }
  body.home .i-magazine__more {
    padding: 40px 0 0 0;
  }
  body.home .i-magazine__illust {
    margin: -40px auto -94px auto;
  }
  body.home .i-magazine__illust img {
    width: 100px;
  }
}
body.home .i-workshop__wrapper {
  border-top: 1px solid #E5E7DC;
  background-color: #f7f8f4;
  padding: 40px 0;
}
body.home .i-workshop__lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: stretch;
  height: 100%;
}
body.home .i-workshop__box {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  height: 100%;
  padding: 20px;
  width: 100%;
}
body.home .i-workshop__heading {
  font-size: 1.3em;
  margin-bottom: 10px;
}
body.home .i-workshop__text {
  margin-bottom: 15px;
}
body.home .i-workshop__text p {
  margin-bottom: 10px;
}
body.home .i-workshop__spec {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
}
body.home .i-workshop__specHeading {
  background-color: #4662A2;
  border-radius: 2px;
  color: #fff;
  font-size: 0.85em;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 12px;
}
body.home .i-workshop__ribbon {
  height: 100%;
}
body.home .i-workshop__more {
  text-align: center;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-workshop__list {
    margin-bottom: 10px;
    width: 100%;
  }
  body.home .i-workshop__illust {
    display: none;
  }
  body.home .i-workshop__illustSP {
    display: flex;
  }
  body.home .i-workshop__illustSP img {
    width: 60px;
  }
}
@media (min-width: 751px) {
  body.home .i-workshop__illust {
    display: flex;
    justify-content: flex-end;
  }
  body.home .i-workshop__illustSP {
    display: none;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-workshop__wrapper {
    padding: 60px 0;
  }
  body.home .i-workshop__lists {
    gap: 0 1%;
  }
  body.home .i-workshop__list {
    margin-bottom: 20px;
    width: 49%;
  }
  body.home .i-workshop__heading {
    font-size: 1.3em;
  }
  body.home .i-workshop__illust {
    margin: -60px auto -50px auto;
  }
  body.home .i-workshop__illust img {
    width: 80px;
  }
}
@media (min-width: 1025px) {
  body.home .i-workshop__wrapper {
    padding: 80px 0;
  }
  body.home .i-workshop__lists {
    gap: 0 1%;
  }
  body.home .i-workshop__list {
    margin-bottom: 20px;
    width: 49%;
  }
  body.home .i-workshop__heading {
    font-size: 1.2em;
  }
  body.home .i-workshop__illust {
    margin: -40px auto -90px auto;
  }
  body.home .i-workshop__illust img {
    width: 100px;
  }
}
body.home .i-enquete__wrapper {
  padding: 40px 0;
}
body.home .i-enquete__title {
  align-items: center;
  display: flex;
  gap: 0 20px;
}
body.home .i-enquete__heading {
  color: #4662A2;
  font-size: 2em;
  line-height: 0.8em;
}
body.home .i-enquete__heading small {
  color: #333;
  font-size: 0.5em;
  padding-left: 2px;
}
body.home .i-enquete__illust {
  width: 60px;
}
body.home .i-enquete__contents {
  width: 100%;
}
body.home .i-enquete__lists {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
  padding-top: 5px;
  width: 100%;
}
body.home .i-enquete__list {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 5px 10px 5px;
}
body.home .i-enquete__date {
  color: #666;
  font-size: 0.9em;
}
body.home .i-enquete__category span {
  border: 1px solid #4662A2;
  border-radius: 20px;
  color: #4662A2;
  display: inline-block;
  font-size: 0.6em;
  font-weight: bold;
  padding: 0 10px;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.home .i-enquete__title {
    flex-direction: row-reverse;
    margin: 0 auto;
    width: 200px;
  }
  body.home .i-enquete__heading {
    margin-left: -40px;
  }
  body.home .i-enquete__illust {
    margin-left: -40px;
  }
  body.home .i-enquete__more {
    text-align: center;
  }
}
@media (min-width: 751px) {
  body.home .i-enquete__container {
    display: flex;
    justify-content: space-between;
  }
  body.home .i-enquete__title {
    position: relative;
    width: 20%;
  }
  body.home .i-enquete__heading {
    min-height: 250px;
  }
  body.home .i-enquete__contents {
    width: 70%;
  }
  body.home .i-enquete__lists {
    margin-bottom: 30px;
    padding-top: 10px;
  }
  body.home .i-enquete__list {
    margin-bottom: 10px;
    padding: 10px 10px 20px 10px;
  }
  body.home .i-enquete__list a {
    align-items: center;
    display: flex;
    gap: 0 2%;
    width: 100%;
  }
  body.home .i-enquete__date {
    min-width: 110px;
  }
  body.home .i-enquete__illust {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 100px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.home .i-enquete__wrapper {
    padding: 60px 0 0 0;
  }
  body.home .i-enquete__contents {
    padding-bottom: 60px;
  }
}
@media (min-width: 1025px) {
  body.home .i-enquete__wrapper {
    padding: 80px 0 0 0;
  }
  body.home .i-enquete__contents {
    padding-bottom: 80px;
  }
}
body.tax-magazine_category .i-wrapper,
body.post-type-archive-magazine .i-wrapper {
  margin-bottom: 40px;
}
body.tax-magazine_category .i-navigation,
body.post-type-archive-magazine .i-navigation {
  border-top: 1px solid #eee;
  padding: 20px 0;
}
body.tax-magazine_category .i-container,
body.post-type-archive-magazine .i-container {
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 40px;
}
body.tax-magazine_category .i-mainvisual__wrapper,
body.post-type-archive-magazine .i-mainvisual__wrapper {
  background-color: #F7FAFF;
  background-image: url(../img/base/mainvisual-bg.png);
  background-position: bottom left;
  background-size: cover;
  border-top: 1px solid #dee4f7;
  border-bottom: 1px solid #dee4f7;
  height: 100%;
}
body.tax-magazine_category .i-mainvisual__container,
body.post-type-archive-magazine .i-mainvisual__container {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
body.tax-magazine_category .i-description,
body.post-type-archive-magazine .i-description {
  padding: 30px 0 0 0;
}
body.tax-magazine_category .i-descriptionCategory__container,
body.post-type-archive-magazine .i-descriptionCategory__container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
body.tax-magazine_category .i-descriptionCategory__heading,
body.post-type-archive-magazine .i-descriptionCategory__heading {
  color: #4662A2;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.tax-magazine_category .i-descriptionCategory__image,
body.post-type-archive-magazine .i-descriptionCategory__image {
  width: 20%;
}
body.tax-magazine_category .i-descriptionCategory__text,
body.post-type-archive-magazine .i-descriptionCategory__text {
  align-items: center;
  display: flex;
  width: 75%;
}
body.tax-magazine_category .i-image,
body.post-type-archive-magazine .i-image {
  margin-bottom: 10px;
}
body.tax-magazine_category .i-contents__heading,
body.post-type-archive-magazine .i-contents__heading {
  margin-bottom: 5px;
}
body.tax-magazine_category .i-contents__heading--primary, body.tax-magazine_category .i-contents__heading--secondary,
body.post-type-archive-magazine .i-contents__heading--primary,
body.post-type-archive-magazine .i-contents__heading--secondary {
  color: #4662A2;
}
body.tax-magazine_category .i-contents__heading--primary,
body.post-type-archive-magazine .i-contents__heading--primary {
  font-weight: bold;
}
body.tax-magazine_category .i-contents__heading--secondary,
body.post-type-archive-magazine .i-contents__heading--secondary {
  font-size: 1em;
  line-height: 1.2em;
}
body.tax-magazine_category .i-contents__date,
body.post-type-archive-magazine .i-contents__date {
  line-height: 1.4em;
}
body.tax-magazine_category .i-contents__tag,
body.post-type-archive-magazine .i-contents__tag {
  background-color: #4662A2;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2px 10px;
}
body.tax-magazine_category .i-contents__description,
body.post-type-archive-magazine .i-contents__description {
  margin-bottom: 5px;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.tax-magazine_category .i-description br,
  body.post-type-archive-magazine .i-description br {
    display: none;
  }
  body.tax-magazine_category .i-container,
  body.post-type-archive-magazine .i-container {
    display: flex;
    justify-content: space-between;
  }
  body.tax-magazine_category .i-image,
  body.post-type-archive-magazine .i-image {
    width: 30%;
  }
  body.tax-magazine_category .i-contents__container,
  body.post-type-archive-magazine .i-contents__container {
    width: 65%;
  }
  body.tax-magazine_category .i-contents__heading,
  body.post-type-archive-magazine .i-contents__heading {
    line-height: 1.7em;
  }
  body.tax-magazine_category .i-contents__heading--primary,
  body.post-type-archive-magazine .i-contents__heading--primary {
    margin-bottom: 4px;
  }
  body.tax-magazine_category .i-contents__heading--secondary,
  body.post-type-archive-magazine .i-contents__heading--secondary {
    margin-bottom: 6px;
  }
}
@media (min-width: 751px) {
  body.tax-magazine_category .i-description,
  body.post-type-archive-magazine .i-description {
    text-align: center;
  }
  body.tax-magazine_category .i-container,
  body.post-type-archive-magazine .i-container {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  body.tax-magazine_category .i-image,
  body.post-type-archive-magazine .i-image {
    display: flex;
    gap: 0 -4%;
    justify-content: space-between;
  }
  body.tax-magazine_category .i-image__photo--secondary,
  body.post-type-archive-magazine .i-image__photo--secondary {
    margin: 20px 0 0 -20px;
  }
  body.tax-magazine_category .i-contents__heading,
  body.post-type-archive-magazine .i-contents__heading {
    margin-bottom: 15px;
  }
  body.tax-magazine_category .i-contents__heading--primary,
  body.post-type-archive-magazine .i-contents__heading--primary {
    font-size: 1.4em;
    margin-bottom: 5px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.tax-magazine_category .i-wrapper,
  body.post-type-archive-magazine .i-wrapper {
    margin-bottom: 50px;
  }
  body.tax-magazine_category .i-navigation,
  body.post-type-archive-magazine .i-navigation {
    padding: 30px 0;
  }
  body.tax-magazine_category .i-mainvisual__container,
  body.post-type-archive-magazine .i-mainvisual__container {
    max-width: 580px;
  }
  body.tax-magazine_category .i-description,
  body.post-type-archive-magazine .i-description {
    padding: 40px 0 20px 0;
  }
  body.tax-magazine_category .i-image,
  body.post-type-archive-magazine .i-image {
    width: 30%;
  }
  body.tax-magazine_category .i-contents__container,
  body.post-type-archive-magazine .i-contents__container {
    width: 63%;
  }
}
@media (min-width: 1025px) {
  body.tax-magazine_category .i-wrapper,
  body.post-type-archive-magazine .i-wrapper {
    margin-bottom: 60px;
  }
  body.tax-magazine_category .i-navigation,
  body.post-type-archive-magazine .i-navigation {
    padding: 40px 0;
  }
  body.tax-magazine_category .i-mainvisual__container,
  body.post-type-archive-magazine .i-mainvisual__container {
    max-width: 780px;
  }
  body.tax-magazine_category .i-description,
  body.post-type-archive-magazine .i-description {
    padding: 60px 0 40px 0;
  }
  body.tax-magazine_category .i-image,
  body.post-type-archive-magazine .i-image {
    width: 30%;
  }
  body.tax-magazine_category .i-contents__container,
  body.post-type-archive-magazine .i-contents__container {
    width: 62%;
  }
}
body.single-magazine .i-title__text--primary {
  color: #4662A2;
  font-size: 1.8em;
  margin-bottom: 4px;
}
body.single-magazine .i-title__text--secondary {
  color: #4662A2;
  font-size: 1.2em;
}
body.single-magazine .i-description__container {
  padding: 20px 0 0 0;
}
body.single-magazine .i-article__heading {
  background-color: #4662A2;
  border-radius: 6px;
  color: #fff;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
}
body.single-magazine .i-article__image {
  margin-bottom: 40px;
  padding: 20px 0;
}
body.single-magazine .i-article__image figure {
  margin-bottom: 10px;
}
body.single-magazine .i-text__container {
  margin-bottom: 40px;
}
body.single-magazine .i-text__container .wp-block-image {
  margin: 40px 0 5px 0;
}
body.single-magazine .i-text__container ol {
  margin-bottom: 40px;
}
body.single-magazine .i-text__container li {
  list-style: disc;
}
body.single-magazine .i-text__container h2.wp-block-heading {
  background-color: #4662A2;
  border-radius: 4px;
  color: #fff;
  font-size: 1.6em;
  margin: 20px 0;
  padding: 10px;
  text-align: center;
}
body.single-magazine .i-text__container h3.wp-block-heading {
  color: #4662A2;
  font-size: 1.4em;
  margin: 20px 0;
}
body.single-magazine .i-text__container h4.wp-block-heading {
  color: #4662A2;
  font-size: 1.2em;
  margin: 10px 0;
}
body.single-magazine .i-text__container .wp-block-separator {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 40px 0 50px 0;
}
body.single-magazine .i-text__container .wp-block-table table {
  margin-bottom: 5px;
}
body.single-magazine .i-text__container .wp-block-separator.has-alpha-channel-opacity {
  border: none;
  margin: 20px 0;
}
body.single-magazine .i-spot__container {
  background-color: #EEF0F5;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 20px;
}
body.single-magazine .i-spot__heading {
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.4em;
  margin-bottom: 5px;
}
body.single-magazine .i-spot__image img {
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
body.single-magazine .i-spot__text {
  display: flex;
  align-items: center;
}
body.single-magazine .i-book__container {
  background-color: #EEF0F5;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 0 8%;
  margin-top: 20px;
  padding: 20px;
}
body.single-magazine .i-book__images {
  display: flex;
  width: 30%;
}
body.single-magazine .i-book__image img {
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  width: 100%;
}
body.single-magazine .i-book__image--2 {
  margin: 10px 0 0 -10px;
}
body.single-magazine .i-book__text {
  display: flex;
  align-items: center;
  width: 70%;
}
body.single-magazine .i-book__name {
  font-size: 1em;
  font-weight: bold;
}
body.single-magazine .i-book__release {
  font-size: 0.9em;
  font-weight: bold;
}

@media all and (min-width: 0) and (max-width: 750px) {
  body.single-magazine .i-title__container {
    margin-bottom: 30px;
  }
  body.single-magazine .i-spot__image {
    margin-bottom: 20px;
    width: 70%;
  }
}
@media (min-width: 751px) {
  body.single-magazine .i-title__container {
    margin-bottom: 40px;
  }
  body.single-magazine .i-title__text--primary {
    line-height: 1.3em;
  }
  body.single-magazine .i-text__container {
    margin-bottom: 60px;
  }
  body.single-magazine .i-text__container h2.wp-block-heading {
    margin: 60px 0 20px 0;
    padding: 20px;
  }
  body.single-magazine .i-spot__container {
    justify-content: space-between;
  }
  body.single-magazine .i-spot__text {
    width: 65%;
  }
  body.single-magazine .i-spot__image {
    width: 30%;
  }
  body.single-magazine .i-book__container {
    justify-content: space-between;
    gap: 0 4%;
  }
  body.single-magazine .i-book__name {
    font-size: 1.3em;
  }
  body.single-magazine .i-book__release {
    font-size: 1.1em;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-magazine .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
}
@media (min-width: 1025px) {
  body.single-magazine .i-article__wrapper {
    padding: 40px 0 80px 0;
  }
}
body.single-magazine .i-mainvisual__wrapper {
  background-position: right;
  background-repeat: repeat-x;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
body.single-magazine .i-mainvisual__container {
  align-items: flex-end;
  display: flex;
  justify-content: center;
}

@media all and (min-width: 0) and (max-width: 480px) {
  body.single-magazine .i-mainvisual__wrapper {
    background-size: cover;
    min-height: 140px;
    max-height: 180px;
  }
  body.single-magazine .i-mainvisual__container {
    padding: 0 20px;
  }
  body.single-magazine .i-mainvisual__title {
    margin-bottom: -30px;
    width: 440px;
  }
}
@media all and (min-width: 481px) and (max-width: 750px) {
  body.single-magazine .i-mainvisual__wrapper {
    background-size: cover;
    height: 220px;
  }
  body.single-magazine .i-mainvisual__container {
    max-width: 600px;
    padding: 0 20px;
  }
  body.single-magazine .i-mainvisual__title {
    margin-bottom: -30px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-magazine .i-mainvisual__wrapper {
    background-size: cover;
    height: 300px;
  }
  body.single-magazine .i-mainvisual__container {
    max-width: 780px;
    padding: 0 20px;
  }
}
@media (min-width: 1025px) {
  body.single-magazine .i-mainvisual__wrapper {
    background-size: cover;
    height: 350px;
  }
  body.single-magazine .i-mainvisual__container {
    max-width: 980px;
    padding: 0 20px;
  }
}
body.magazine_archive .i-wrapper {
  margin-bottom: 40px;
  padding: 40px 0;
}
body.magazine_archive .i-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3%;
}
body.magazine_archive .i-list {
  margin-bottom: 20px;
  width: 30%;
}
body.magazine_archive .i-book {
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 100%;
}
body.magazine_archive .i-book:hover {
  opacity: 0.8em;
  transform: scale(1.1);
}

body.link .i-link__wrapper {
  padding: 40px 0;
}
body.link .i-link__container {
  align-items: center;
  display: flex;
}
body.link .i-link__bnr a img {
  transition: 0.3s;
  width: 100%;
}
body.link .i-link__bnr a img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
body.link .i-link__bnr img {
  border: 1px solid #ddd;
  width: 100%;
}
body.link .i-link__contents a {
  display: block;
}

@media (min-width: 751px) {
  body.link .i-link__container {
    justify-content: space-between;
  }
  body.link .i-link__bnr {
    width: 40%;
  }
  body.link .i-link__contents {
    width: 55%;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.link .i-link__wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 1025px) {
  body.link .i-link__wrapper {
    padding: 80px 0;
  }
  body.link .i-link__container {
    margin-bottom: 40px;
  }
}
body.tax-workshop_category,
body.post-type-archive-workshop {
  background-color: #f7f8f4;
}
body.tax-workshop_category .i-article__wrapper,
body.post-type-archive-workshop .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.tax-workshop_category .i-article__container,
body.post-type-archive-workshop .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.tax-workshop_category .i-article__heading,
body.post-type-archive-workshop .i-article__heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
body.tax-workshop_category .i-article__heading a,
body.post-type-archive-workshop .i-article__heading a {
  color: #4662A2;
}
body.tax-workshop_category .i-article__heading a:hover,
body.post-type-archive-workshop .i-article__heading a:hover {
  color: #4D77D6;
}
body.tax-workshop_category .i-article__date,
body.post-type-archive-workshop .i-article__date {
  font-weight: bold;
}
body.tax-workshop_category .i-article__text,
body.post-type-archive-workshop .i-article__text {
  margin-bottom: 10px;
}
body.tax-workshop_category .i-article__more,
body.post-type-archive-workshop .i-article__more {
  padding-top: 10px;
  text-align: center;
}

@media all and (min-width: 751px) and (max-width: 1024px) {
  body.tax-workshop_category .i-article__wrapper,
  body.post-type-archive-workshop .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.tax-workshop_category .i-article__heading,
  body.post-type-archive-workshop .i-article__heading {
    margin-bottom: 15px;
    line-height: 1.4em;
  }
  body.tax-workshop_category .i-article__text,
  body.post-type-archive-workshop .i-article__text {
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  body.tax-workshop_category .i-article__wrapper,
  body.post-type-archive-workshop .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.tax-workshop_category .i-article__heading,
  body.post-type-archive-workshop .i-article__heading {
    line-height: 1.4em;
    margin-bottom: 20px;
  }
  body.tax-workshop_category .i-article__text,
  body.post-type-archive-workshop .i-article__text {
    margin-bottom: 20px;
  }
}
body.single-workshop {
  background-color: #f7f8f4;
}
body.single-workshop .i-article__wrapper {
  padding: 20px 0 40px 0;
}
body.single-workshop .i-article__container {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 30px;
}
body.single-workshop .i-article__heading {
  color: #4662A2;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}
body.single-workshop .i-article__heading a {
  color: #4662A2;
}
body.single-workshop .i-article__heading a:hover {
  color: #4D77D6;
}
body.single-workshop .i-article__date {
  font-weight: bold;
}
body.single-workshop .i-article__more {
  padding-top: 10px;
  text-align: center;
}
body.single-workshop .i-article__text p {
  margin-bottom: 8px;
}
body.single-workshop .i-article__text ol {
  margin: 0 0 0 20px;
}
body.single-workshop .i-article__text ol li {
  list-style-type: number;
}
body.single-workshop .i-article__text ul {
  margin: 0 0 0 20px;
}
body.single-workshop .i-article__text ul li {
  list-style-type: disc;
}
body.single-workshop .i-article__text h2.wp-block-heading {
  color: #4662A2;
  font-size: 1.5em;
  margin: 20px 0 5px 0;
}
body.single-workshop .i-article__text h3.wp-block-heading {
  font-size: 1.4em;
}
body.single-workshop .i-article__text h4.wp-block-heading {
  font-size: 1.3em;
}
body.single-workshop .i-paginate__container {
  padding: 20px 0;
}

@media (min-width: 751px) {
  body.single-workshop h2.wp-block-heading {
    padding: 15px 0;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  body.single-workshop .i-article__wrapper {
    padding: 30px 0 60px 0;
  }
  body.single-workshop .i-article__container {
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
  body.single-workshop .i-article__heading {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
  body.single-workshop .i-article__spec {
    margin-bottom: 5px;
    padding-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  body.single-workshop .i-article__wrapper {
    padding: 50px 0 100px 0;
  }
  body.single-workshop .i-article__container {
    margin-bottom: 10px;
    padding-bottom: 60px;
  }
  body.single-workshop .i-article__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  body.single-workshop .i-article__spec {
    margin-bottom: 40px;
  }
}
.i-conference__container {
  margin-bottom: 40px;
  padding: 40px 0;
  width: 100%;
}
.i-conference__container--m {
  width: 100%;
}
.i-conference__description {
  margin-bottom: 30px;
}
.i-conference__thumb-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}
.i-conference__thumb-list {
  width: 48%;
}
.i-conference__thumb-list img {
  box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
  border-radius: 5px;
}
.i-conference__title {
  margin-top: 60px;
}
.i-conference__list-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.i-conference__list-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 20px 0 20px 20px;
}
.i-conference__list-item-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.i-conference__list-item-sign {
  color: #4662A2;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 6px;
}
.i-conference__list-item-toggle {
  padding-right: 20px;
}
.i-conference__list-item-question {
  padding-right: 15px;
}
.i-conference__list-item-answer {
  padding-right: 15px;
}
.i-conference__list-item-icon {
  margin-top: -50px;
  margin-right: -5px;
}
.i-conference__back {
  text-align: center;
  padding-top: 40px;
}

@media (min-width: 751px) {
  .i-conference__container {
    justify-content: space-between;
  }
  .i-conference__title {
    margin-top: 80px;
  }
}
@media all and (min-width: 751px) and (max-width: 1024px) {
  .i-conference__wrapper {
    padding: 60px 0;
  }
  .i-conference__thumb-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 4%;
  }
}
@media (min-width: 1025px) {
  .i-conference__wrapper {
    padding: 80px 0;
  }
  .i-conference__container {
    margin-bottom: 40px;
  }
}
.wp-block-separator {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 20px 0 30px 0;
}

.wp-block-table table th, .wp-block-table table td {
  font-size: 0.9em;
}

.wp-block-file {
  background-color: #ececec;
  border-radius: 3px;
  margin: 20px 0;
  padding: 20px;
}

.wp-block-image {
  margin-bottom: 10px;
}

.pagination {
  padding: 40px 0;
}

.pagination ul.page-numbers {
  display: flex;
  justify-content: center;
}

.pagination ul.page-numbers li a {
  padding: 10px 20px;
}

.pagination ul.page-numbers li span {
  padding: 10px 20px;
}

.pagination .current {
  background: #4662A2;
  border-radius: 6px;
  color: #fff;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 1000;
  visibility: hidden;
  padding-top: 4.375rem;
  background-color: rgb(255, 255, 255);
  width: 80%;
}
@media (min-width: 768px) {
  .drawer-menu {
    padding-top: 5rem;
    width: 80%;
  }
}

.drawer-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-menu.is-closing {
  transform: translateX(-100%);
}

.drawer-menu[aria-hidden=true] {
  visibility: hidden;
}

.drawer-menu[aria-hidden=false] {
  visibility: visible;
}

.drawer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu__item > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.drawer-menu__item > a {
  color: #4c619e;
}
.drawer-menu__item > a {
  padding: 0.875rem;
}
@media (min-width: 768px) {
  .drawer-menu__item > a {
    padding: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .drawer-menu__item > a {
    padding: 1.75rem;
  }
}
.drawer-menu__item > a {
  padding-left: 0.875rem;
}
@media (min-width: 768px) {
  .drawer-menu__item > a {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .drawer-menu__item > a {
    padding-left: 1.75rem;
  }
}
.drawer-menu__item > a > span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.25s ease-in-out;
}

.drawer-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.drawer-menu__overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.drawer-menu__trigger-wrapper {
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 1100;
}

.drawer-menu__trigger {
  width: 3.125rem;
  height: 3.125rem;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: block;
  transition: opacity 0.3s ease;
  background-color: #fff;
}
@media (min-width: 768px) {
  .drawer-menu__trigger {
    display: none;
  }
}

.drawer-menu__trigger .drawer-menu__line {
  position: absolute;
  left: 50%;
  width: 1.5rem;
  height: 0.125rem;
  margin-left: -0.75rem;
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.drawer-menu__trigger .drawer-menu__line:nth-child(1) {
  top: calc(50% - 0.5625rem);
}
.drawer-menu__trigger .drawer-menu__line:nth-child(2) {
  top: calc(50% - 0.0625rem);
}
.drawer-menu__trigger .drawer-menu__line:nth-child(3) {
  top: calc(50% + 0.4375rem);
}
.drawer-menu__trigger .drawer-menu__line {
  background-color: #4c619e;
}

.drawer-menu__trigger.is-active .drawer-menu__line:nth-child(1) {
  top: calc(50% - 0.0625rem);
  transform: rotate(45deg);
}
.drawer-menu__trigger.is-active .drawer-menu__line:nth-child(2) {
  opacity: 0;
}
.drawer-menu__trigger.is-active .drawer-menu__line:nth-child(3) {
  top: calc(50% - 0.0625rem);
  transform: rotate(-45deg);
}

/* Image Viewer モーダル */
.image-viewer-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.image-viewer-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.95);
  }
}
.image-viewer-modal.closing {
  display: flex;
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
  from {
    background: rgba(0, 0, 0, 0.95);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
.image-viewer-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  animation: zoomIn 0.3s ease;
}

.image-viewer-modal.closing .image-viewer-content {
  animation: zoomOut 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
.image-viewer-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.image-viewer-image.changing {
  opacity: 0.5;
}

.image-viewer-counter {
  color: white;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* ローディングスピナー */
.image-viewer-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  z-index: 100;
}

.image-viewer-loading.active {
  display: block;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.image-viewer-close,
.image-viewer-prev,
.image-viewer-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-viewer-close:hover,
.image-viewer-prev:hover,
.image-viewer-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.image-viewer-close svg,
.image-viewer-prev svg,
.image-viewer-next svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.image-viewer-close {
  top: 1rem;
  right: 1rem;
}

.image-viewer-prev {
  left: 1rem;
}

.image-viewer-next {
  right: 1rem;
}

.image-viewer-close:hover,
.image-viewer-prev:hover,
.image-viewer-next:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ddd;
}

.image-viewer-close {
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
}

.image-viewer-prev {
  left: 1rem;
  font-size: 3rem;
}

.image-viewer-next {
  right: 1rem;
  font-size: 3rem;
}

.image-viewer-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.875rem;
  opacity: 0.7;
}

[data-scroll-animation] {
  opacity: 0;
  transition: all 0.8s ease;
  will-change: opacity, transform, filter;
}

/* ------------------------------
 * delay
 * ------------------------------ */
[data-scroll-animation] {
  opacity: 0;
  transition: all 0.8s ease;
  transition-delay: var(--scroll-delay, 0s);
  will-change: opacity, transform, filter;
}

[data-scroll-animation].is-visible {
  opacity: 1;
}

/* ------------------------------
 * Fade
 * ------------------------------ */
[data-scroll-animation=fade].is-visible {
  opacity: 1;
}

/* ------------------------------
 * Slide Up
 * ------------------------------ */
[data-scroll-animation=slide-up] {
  transform: translateY(5rem);
}
[data-scroll-animation=slide-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
 * Slide Up
 * ------------------------------ */
[data-scroll-animation=slide-down] {
  transform: translateY(-5rem);
}
[data-scroll-animation=slide-down].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
 * Slide Left
 * ------------------------------ */
[data-scroll-animation=slide-left] {
  transform: translateX(5rem);
}
[data-scroll-animation=slide-left].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------
 * Slide Right
 * ------------------------------ */
[data-scroll-animation=slide-right] {
  transform: translateX(-5rem);
}
[data-scroll-animation=slide-right].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------
 * Scale Up（拡大しながらフェードイン）
 * ------------------------------ */
[data-scroll-animation=scale-up] {
  transform: scale(0.8);
}
[data-scroll-animation=scale-up].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ------------------------------
 * Zoom In
 * ------------------------------ */
[data-scroll-animation=zoom] {
  transform: scale(0.9);
}
[data-scroll-animation=zoom].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ------------------------------
 * Blur In
 * ------------------------------ */
[data-scroll-animation=blur] {
  filter: blur(10px);
}
[data-scroll-animation=blur].is-visible {
  opacity: 1;
  filter: blur(0);
}

/* ------------------------------
 * Flip
 * ------------------------------ */
[data-scroll-animation=flip] {
  transform: perspective(600px) rotateX(90deg);
  transform-origin: center;
}
[data-scroll-animation=flip].is-visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg);
}

/* ------------------------------
 * Rotate（軽く回転しながらフェードイン）
 * ------------------------------ */
[data-scroll-animation=rotate] {
  transform: rotate(-8deg);
}
[data-scroll-animation=rotate].is-visible {
  opacity: 1;
  transform: rotate(0);
}

/* ------------------------------
 * Blur Slide（ぼかし＋スライド）
 * ------------------------------ */
[data-scroll-animation=blur-slide-up] {
  filter: blur(10px);
  transform: translateY(3.75rem);
}
[data-scroll-animation=blur-slide-up].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ------------------------------
 * Blur Slide Up（下→上）
 * ------------------------------ */
[data-scroll-animation=blur-slide-up] {
  filter: blur(10px);
  transform: translateY(3.75rem);
}
[data-scroll-animation=blur-slide-up].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ------------------------------
 * Blur Slide Down（上→下）
 * ------------------------------ */
[data-scroll-animation=blur-slide-down] {
  filter: blur(10px);
  transform: translateY(-3.75rem);
}
[data-scroll-animation=blur-slide-down].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ------------------------------
 * Blur Slide Left（右→左）
 * ------------------------------ */
[data-scroll-animation=blur-slide-left] {
  filter: blur(10px);
  transform: translateX(3.75rem);
}
[data-scroll-animation=blur-slide-left].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/* ------------------------------
 * Blur Slide Right（左→右）
 * ------------------------------ */
[data-scroll-animation=blur-slide-right] {
  filter: blur(10px);
  transform: translateX(-3.75rem);
}
[data-scroll-animation=blur-slide-right].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.accordion {
  overflow: hidden;
}

.accordion__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.accordion__toggle .accordion__icon {
  transition: transform 0.3s ease;
}
.accordion__toggle[aria-expanded=true] .accordion__icon {
  transform: rotate(135deg);
}

.accordion__content {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, gap 0.4s ease;
}

/* ==================================================
 * Mainvisual Photos - 縦スクロールスライダー
 * ================================================== */
/* ラッパー（JSが自動生成）：高さを指定 */
.mainvisual-vertical-slider-wrapper {
  width: 100%;
  height: 600px; /* スライダーの表示高さ */
  overflow: hidden;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .mainvisual-vertical-slider-wrapper {
    height: 400px; /* スマホでは少し低く */
  }
}

/*# sourceMappingURL=app.min.css.map */
