@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@600&display=swap");
/* reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* base styles */
:root {
  color-scheme: light;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-size: 62.5%;
  font-family:
    "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック",
    "MS PGothic", sans-serif;
  font-weight: 400;
}

body {
  color: #222222;
  margin: 0;
  line-height: inherit;
  font-size: 1.6rem;
  background: #fff;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 30;
  transition-delay: 0.3s;
}
@media (max-width: 767px) {
  .l-header {
    z-index: 20;
  }
}

.l-nav {
  position: relative;
}
@media (max-width: 767px) {
  .l-nav {
    position: absolute;
    height: auto;
    background: none;
    z-index: 50;
  }
}

.l-main {
  position: relative;
}

.l-footer {
  position: relative;
  background: linear-gradient(to right, #27326b 0%, #2b4b85 100%);
}

.l-container {
  position: relative;
}

.l-content {
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 1140px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.l-content--sm {
  max-width: 1000px;
}
.l-content--with-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 59px);
  margin-top: 120px;
}
@media (max-width: 767px) {
  .l-content--with-sidebar {
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .l-content {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-sidebar {
  position: sticky;
  left: 0;
  top: 0;

  flex: 0 0 240px;
}

.c-impact {
  font-size: 2rem;
  font-weight: bold;
}

.c-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.3333333333em;
}
@media (max-width: 767px) {
  .c-lead {
    font-size: 1.5rem;
  }
}

.c-note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875em;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .c-note {
    font-size: 1.3rem;
    margin-bottom: 25px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.c-text {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.875em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
    line-height: 1.7143em;
  }
}

hr {
  border: none;
  border-bottom: 3px dashed white;
  margin: 40px auto;
  display: block;
}

.c-hr {
  border: none;
  border-bottom: 3px dashed white;
  margin: 40px auto;
  display: block;
}
.c-hr--line {
  border-bottom: 1px solid #e1e1e1;
  margin: 55px auto;
}

.c-stick {
  position: absolute;
  z-index: 2;
  display: block;
}
@media (max-width: 767px) {
  .c-stick {
    transform: scale(0.5);
  }
}
.c-stick--abc {
  background: url(../img/stick-abc.png) 0 0 no-repeat;
  background-size: contain;
  width: 177.5px;
  height: 134px;
}
.c-stick--lunch {
  background: url(../img/stick-lunch.png) 0 0 no-repeat;
  background-size: contain;
  width: 166.5px;
  height: 140.5px;
}
.c-stick--tree-2 {
  background: url(../img/stick-tree-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 124px;
  height: 116px;
}
.c-stick--bird {
  background: url(../img/stick-bird.png) 0 0 no-repeat;
  background-size: contain;
  width: 62px;
  height: 62px;
}
.c-stick--bird-tree {
  background: url(../img/stick-bird-tree.png) 0 0 no-repeat;
  background-size: contain;
  width: 218px;
  height: 107px;
}
.c-stick--leaf {
  background: url(../img/stick-leaf.png) 0 0 no-repeat;
  background-size: contain;
  width: 79px;
  height: 76px;
}
.c-stick--leaf-2 {
  background: url(../img/stick-leaf-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 72px;
  height: 57px;
}
.c-stick--flower-1 {
  background: url(../img/stick-flower-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 60px;
  height: 59px;
}
.c-stick--flower-2 {
  background: url(../img/stick-flower-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 103px;
  height: 62.5px;
}
.c-stick--tree {
  background: url(../img/stick-tree.png) 0 0 no-repeat;
  background-size: contain;
  width: 146px;
  height: 64px;
}
.c-stick--sun {
  background: url(../img/stick-sun.png) 0 0 no-repeat;
  background-size: contain;
  width: 74px;
  height: 74px;
}

.c-ic {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.c-ic--facebook {
  background: url(../img/ic-facebook.png) 0 0 no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
}
.c-ic--insta {
  background: url(../img/ic-insta.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}
.c-ic--qna {
  background: url(../img/ic-qna.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--voice {
  background: url(../img/ic-voice.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--contact {
  background: url(../img/ic-contact.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}
.c-ic--recruit {
  background: url(../img/ic-recruit.png) 0 0 no-repeat;
  background-size: contain;
  width: 96px;
  height: 92px;
}

.c-section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .c-section {
    padding-bottom: 30px;
  }
}

.c-col {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4%;
  margin: 70px auto;
}
@media (max-width: 767px) {
  .c-col {
    display: block;
    margin: 30px auto;
  }
}
.c-col__content {
  width: 48%;
}
@media (max-width: 767px) {
  .c-col__content {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.c-col__pic {
  width: 48%;
  position: relative;
}
@media (max-width: 767px) {
  .c-col__pic {
    padding-top: 30px;
    width: 100%;
    margin-bottom: 15px;
  }
}
.c-col__pic > img {
  display: block;
}
.c-col--reverse .c-col__pic {
  order: 2;
}
.c-col--reverse .c-col__content {
  order: 1;
}
.c-col .c-title-3 {
  font-size: 2.4rem;
  border: none;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-col .c-title-3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.c-gall {
  position: relative;
  max-width: 400px;
}
@media (max-width: 767px) {
  .c-gall {
    max-width: 100%;
  }
}
.c-gall .swiper-wrapper {
  padding-bottom: 50px;
}
.c-gall .swiper-slide img {
  border-radius: 80px;
  border: 2px solid #222;
}
@media (max-width: 767px) {
  .c-gall .swiper-slide img {
    border-radius: 40px;
  }
}
.c-gall .swiper-button-prev {
  background: url(../img/prev.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  margin: 0;
}
.c-gall .swiper-button-prev::after {
  display: none;
}
.c-gall .swiper-button-next {
  background: url(../img/next.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  margin: 0;
}
.c-gall .swiper-button-next::after {
  display: none;
}
.c-gall .swiper-pagination {
  bottom: 0 !important;
}
.c-gall .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 100%;
  border: 2px solid #222;
}
.c-gall .swiper-pagination .swiper-pagination-bullet-active {
  background: #f1e421;
}
.c-gall--large {
  max-width: 900px;
  margin: 45px auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .c-gall--large {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-gall--large .swiper-slide {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-slide {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-gall--large .swiper-button-prev {
  bottom: auto;
  top: 50%;
  margin-top: -40px;
  left: 30px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-button-prev {
    left: 0;
  }
}
.c-gall--large .swiper-button-next {
  bottom: auto;
  top: 50%;
  margin-top: -40px;
  right: 30px;
}
@media (max-width: 767px) {
  .c-gall--large .swiper-button-next {
    right: 0;
  }
}

.c-link {
  display: block;
  text-align: left;
  text-decoration: underline;
  border-radius: 20px;
  background: #e0f3fc;
  padding: 15px 25px;
  color: #222222;
  transition: 0.3s ease;
}
.c-link .c-ic {
  margin-right: 15px;
}
.c-link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.c-banner {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  height: 280px;
  text-decoration: none;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-banner {
    border-radius: 50px;
    height: 168px;
  }
}
.c-banner:hover .c-banner__pic {
  opacity: 0.7;
}
.c-banner__pic {
  transition: 0.3s ease;
  width: 50%;
  overflow: hidden;
  height: 280px;
}
@media (max-width: 767px) {
  .c-banner__pic {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 168px;
  }
}
.c-banner__content {
  width: 50%;
  padding: 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .c-banner__content {
    padding: 10px 15px;
  }
}
.c-banner__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #222222;
}
@media (max-width: 767px) {
  .c-banner__title {
    font-size: 1.8rem;
  }
}
.c-banner__tag {
  font-size: 1.3rem;
  color: #ea5432;
  letter-spacing: 0.3em;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-banner__tag {
    font-size: 1rem;
  }
}
.c-banner--row {
  display: block;
  overflow: initial;
}
@media (max-width: 767px) {
  .c-banner--row {
    height: auto;
  }
}
.c-banner--row:hover .c-banner__pic img {
  opacity: 0.7;
}
.c-banner--row .c-banner__pic {
  border-radius: 0;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .c-banner--row .c-banner__pic {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.c-banner--row .c-banner__pic img {
  transition: 0.3s ease;
}
.c-banner--row .c-banner__content {
  width: 100%;
  background: #ebeef5;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
@media (max-width: 767px) {
  .c-banner--row .c-banner__content {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

/*
CTA
*/
.c-cta {
  position: relative;
  padding-top: 1px;
  background: url(../img/cta-bg.jpg) center center no-repeat;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .c-cta {
    height: auto;
    padding: 50px 0;
  }
}
.c-cta__title {
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.5384615385em;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .c-cta__title {
    font-size: 2.2rem;
  }
}
.c-cta__btns {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .c-cta__btns {
    display: block;
  }
}
.c-cta .c-btn {
  background: rgba(246, 246, 246, 0.9);
  width: 400px;
}
.c-cta .c-btn::before {
  content: "";
  display: inline-block;
  background: url(../img/cta-1.png) 0 0 no-repeat;
  background-size: contain;
  width: 50px;
  height: 42px;
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .c-cta .c-btn::before {
    position: absolute;
    left: 20px;
    top: 10px;
  }
}
.c-cta .c-btn:nth-child(2)::before {
  background: url(../img/cta-2.png) 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .c-cta .c-btn:nth-child(2)::before {
    left: 15px;
  }
}
@media (max-width: 767px) {
  .c-cta .c-btn {
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .c-cta .c-btn:nth-child(2) {
    margin-top: 5px;
  }
}

.c-breadcrumb {
  position: relative;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb__list {
  text-align: left;
}
.c-breadcrumb__list li {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li::after {
  content: "/";
  padding: 0 5px;
}
.c-breadcrumb__list li:last-child::after {
  content: none;
}
.c-breadcrumb__list li a {
  text-decoration: none;
  color: #222222;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-breadcrumb__list li a:hover {
  text-decoration: underline;
}

.c-list-entry {
  position: relative;
}
.c-list-entry__item {
  padding: 15px 15px !important;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #efefef;
  padding-bottom: 50px !important;
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .c-list-entry__item {
    display: block;
    padding-bottom: 25px !important;
    margin-bottom: 25px !important;
  }
}
.c-list-entry__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.c-list-entry__link:hover {
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.3;
}
.c-list-entry__pic {
  flex: 0 0 clamp(200px, 30vw, 380px);
  max-width: 380px;
  position: relative;
}
.c-list-entry__pic img {
  border-radius: 80px;
}
@media (max-width: 767px) {
  .c-list-entry__pic img {
    border-radius: 40px;
  }
}
@media (max-width: 767px) {
  .c-list-entry__pic {
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
  }
}
.c-list-entry__content {
  flex-grow: 1;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .c-list-entry__content {
    padding-left: 0;
  }
}
.c-list-entry__cat {
  display: inline-block;
}
.c-list-entry__cat a {
  display: block;
  text-align: center;
  color: #87c0c9;
  border-radius: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 0;
}
.c-list-entry__cat .holiday {
  background: #804c2e;
  color: #fff;
}
.c-list-entry__date {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #87c0c9;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-list-entry__date {
    position: relative;
    right: auto;
    margin-left: 15px;
  }
}
.c-list-entry__date::after {
  content: "・";
}
.c-list-entry__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
  line-height: 1.8em;
  margin-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  text-wrap: initial;
}
@media (max-width: 767px) {
  .c-list-entry__title {
    font-size: 1.8rem;
  }
}
.c-list-entry__title a {
  text-decoration: none;
  color: #222222;
}
.c-list-entry .c-btn {
  width: 200px;
  position: absolute;
  left: 40px;
  bottom: 0;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .c-list-entry .c-btn {
    position: relative;
    left: 0;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-news {
  position: relative;
  border-bottom: 1px solid #e5e6eb;
  padding: 20px 0;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .c-news {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.c-news__info {
  display: flex;
  justify-content: space-between;
}
.c-news__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease;
}
.c-news__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}
.c-news__link:hover:after {
  right: 0;
}
.c-news__time {
  font-size: 1.6rem;
  flex-shrink: 0;
  color: #222222;
  font-weight: normal;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-news__time {
    margin-right: 15px;
    font-size: 1.4rem;
  }
}
/* .c-news__time::after {
  content: " ・";
} */
.c-news__category {
  display: inline-block;
  z-index: 3;
  border: 1px solid #192981;
  width: 140px;
}
@media (max-width: 767px) {
  .c-news__category {
    margin-right: 0;
  }
}
.c-news__category > a {
  font-size: 1.6rem;
  color: #192981;
  text-decoration: none;
  font-weight: 500;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .c-news__category > a {
    font-size: 1.4rem;
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 140px;
    width: auto;
    border-radius: 12px;
  }
}
.c-news__category--holiday > a {
  background: #503d30;
  color: #fff;
}
.c-news__category--blog > a {
  background: #52887c;
  color: #fff;
}
.c-news__title {
  min-width: 0;
  margin: 20px 0 0;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-news__title {
    width: 100%;
    margin-top: 15px;
    padding-right: 0;
    font-weight: normal;
  }
}
.c-news__title > a {
  color: #222222;
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.625em;
}
@media (max-width: 767px) {
  .c-news__title > a {
    font-size: 1.4rem;
  }
}
.c-news__title > a:hover {
  text-decoration: underline;
}
.c-news--white * {
  color: white !important;
}
.c-news--blog .c-news__link::after {
  background: url(../img/bullet-circle-purple.svg) 0 0 no-repeat;
  background-size: contain;
}

/*
<li v-for="post in posts" :key="post.id">
      <time class="c-list-news__time" :datetime="post.date">
        {{ formatDate(post.date) }}
      </time>
      <div class="c-list-news__category">
        <a :href="'/category/' + getPrimaryCategory(post)">
          {{ getPrimaryCategory(post) }}
        </a>
      </div>
      <h3 class="c-list-news__title">
        <a :href="post.link" v-html="post.title.rendered"></a>
      </h3>
    </li>
*/
.c-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.c-case-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .c-case-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}

.c-case {
  position: relative;
  border: 1px solid #edeef1;
  padding: 10px;
  background: #fff;
}
@media (max-width: 767px) {
  .c-case {
    margin-top: 25px;
  }
}
.c-case__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-case__link:hover + .c-case__pic img {
  opacity: 0.7;
}
.c-case__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url(../img/bullet-2.png) 0 0 no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-case__link::after {
    display: none;
  }
}
.c-case__link:hover::after {
  right: 0px;
}
.c-case__pic img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s ease;
}
.c-case__content {
  padding: 30px;
}
@media (max-width: 767px) {
  .c-case__content {
    padding: 15px;
  }
}
.c-case__title {
  font-size: 1.8rem;
  line-height: 2em;
  margin: 0 0 0.5em;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-case__title {
    font-size: 1.5rem;
  }
}
.c-case__tag {
  color: #192981;
  text-decoration: none;
  margin-right: 10px;
}
.c-case__tag::before {
  content: "#";
}
.c-case.swiper-slide {
  width: 430px;
}
@media (max-width: 767px) {
  .c-case.swiper-slide {
    width: 300px;
  }
}

ul.c-list {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  list-style-position: inside;
}
ul.c-list > li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 10px;
}
ul.c-list > li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #222222;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 100%;
}
@media (max-width: 767px) {
  ul.c-list > li::before {
    width: 8px;
    height: 8px;
    top: 12px;
  }
}

ol.c-list {
  list-style: none;
  list-style-position: inside;
  counter-reset: number;
  margin-left: 0;
  padding-left: 0;
}
ol.c-list > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 12px;
}
ol.c-list > li::before {
  display: block;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 7px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  line-height: 20px;
  background: #222222;
}

.c-pagination {
  position: relative;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .c-pagination {
    margin-top: 0;
  }
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
  padding-left: 150px;
  padding-right: 150px;
}
@media (max-width: 767px) {
  .c-pagination ul {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.c-pagination ul li {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .c-pagination ul li {
    font-size: 1.2rem;
  }
}
.c-pagination ul li a {
  color: #222222;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 5px;
}
@media (max-width: 767px) {
  .c-pagination ul li a {
    font-size: 1.2rem;
  }
}
.c-pagination ul .current {
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: bold;
  margin: 0 5px;
  font-size: 1.8rem;
  color: #192981;
}
@media (max-width: 767px) {
  .c-pagination ul .current {
    font-size: 1.2rem;
  }
}
.c-pagination ul .next {
  position: absolute;
  right: 0;
  top: -40px;
  width: 200px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  background: #192981;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .c-pagination ul .next {
    width: 80px;
    line-height: 40px;
    height: 40px;
    font-size: 1rem;
    top: -10px;
  }
}
.c-pagination ul .next:hover {
  opacity: 0.7;
}
.c-pagination ul .prev {
  position: absolute;
  left: 0;
  top: -40px;
  width: 200px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  background: #192981;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .c-pagination ul .prev {
    width: 80px;
    line-height: 40px;
    height: 40px;
    font-size: 1rem;
    top: -10px;
  }
}
.c-pagination ul .prev:hover {
  opacity: 0.7;
}

.c-form {
  position: relative;
  padding: 50px 50px;
}
@media (max-width: 767px) {
  .c-form {
    padding: 25px;
  }
}
.c-form .c-list {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.c-form__table {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #e1e1e1;
  margin-top: 50px;
}
.c-form__table th {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222222;
  width: 220px;
  position: relative;
  padding-top: 20px;
  font-weight: normal;
  padding-bottom: 20px;
  vertical-align: top;
  color: #192981;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 767px) {
  .c-form__table th .c-form__required {
    display: block;
  }
}
@media (max-width: 767px) {
  .c-form__table th {
    text-align: left;
    font-size: 1.5rem;
    padding-right: 0;
    padding-bottom: 10px;
    padding-top: 15px;
    border-bottom: none;
  }
}
.c-form__table td {
  border-bottom: 1px solid #e1e1e1;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .c-form__table td {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .c-form__table td .c-form__required {
    display: none;
  }
}
.c-form__table tr:last-child th,
.c-form__table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 767px) {
  .c-form .c-form__table,
  .c-form .c-form__table tbody,
  .c-form .c-form__table tr,
  .c-form .c-form__table th,
  .c-form .c-form__table td {
    display: block;
    width: 100%;
  }
}

/* コンタクトフォームの生年月日 */
ul.c-form__birth {
  letter-spacing: -0.5em;
  margin: 0 -1em 0 -2.5em;
}
@media screen and (max-width: 767px) {
  ul.c-form__birth {
    margin: 0 -0.5em 0 -2.5em;
  }
}
ul.c-form__birth li {
  display: inline-flex;
  align-items: center;
  letter-spacing: normal;
  margin: 0 1em 0 0;
}
@media screen and (max-width: 767px) {
  ul.c-form__birth li {
    margin: 0 0.5em 0 0;
  }
}
ul.c-form__birth select {
  width: auto;
  margin-right: 4px;
}

.c-form__required {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #e77575;
  text-align: center;
  width: 50px;
  height: 30px;
  background: #fde9e9;
  line-height: 30px;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-form__required {
    transform: scale(0.7);
    transform-origin: right top;
    right: 0;
  }
}
.c-form__radio {
  display: none;
}
.c-form__radio + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
}
.c-form__radio + span:before {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  border: 1px solid #222222;
  left: 0;
  top: 0;
  height: 14px;
  width: 14px;
  background: #fff;
  transition: 0.3s ease;
}
.c-form__radio + span:after {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  background: #222222;
  height: 7px;
  left: 3.5px;
  opacity: 0;
  top: 3.5px;
  width: 7px;
  transition: 0.3s ease;
}
.c-form__radio:checked + span:after {
  opacity: 1;
}
.c-form input[type="submit"] {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.c-form__submit {
  cursor: pointer;
  background: white url(../img/bullet.png) 95% center no-repeat !important;
  background-size: 10px 18px !important;
  border: 1px solid #192981 !important;
  position: relative;
  width: 300px !important;
  display: block !important;
  color: #192981 !important;
  text-decoration: none;
  font-weight: bold;
  line-height: 150%;
  font-size: 1.8rem !important;
  padding: 13.5px 20px !important;
  text-align: center;
  border-radius: 0;
  margin: 30px auto !important;
  transition: opacity 0.3s ease !important;
}
@media (max-width: 767px) {
  .c-form__submit {
    font-size: 1.5rem;
    width: 100% !important;
    padding: 15px 20px !important;
  }
}
.c-form__back {
  position: relative;
  width: 48px !important;
  display: block;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 60px !important;
  margin: 0px !important;
  text-align: center;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
  box-shadow: none;
  cursor: pointer;
  background: #87a0c8 url(../img/angle-left-white.png) 3% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
}
.c-form__back:hover {
  color: #fff !important;
  background: #222222 url(../img/angle-left-white.png) 3% center no-repeat !important;
  background-size: 4.5px 6.5px !important;
}
.c-form input::-moz-placeholder {
  color: #87a0c8;
  font-size: 1.6rem;
}
.c-form input::placeholder {
  color: #87a0c8;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .c-form input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .c-form input::placeholder {
    font-size: 1.4rem;
  }
}
.c-form__text,
.c-form__textarea {
  width: 355px;
  height: 50px;
  padding: 5px 9px;
  border: 1px solid #192981;
  border-radius: 0px;
  font-size: 1.6rem;
  background: #fff;
  transition: border-color 0.2s;
}
@media (max-width: 767px) {
  .c-form__text,
  .c-form__textarea {
    width: 100%;
    height: 50px;
  }
}
.c-form__text--zip,
.c-form__textarea--zip {
  display: inline-block;
  width: 111px;
  margin-bottom: 12px;
  margin-left: 5px;
}
.c-form__text.input-long,
.c-form__textarea.input-long {
  width: 100%;
}
.c-form__textarea {
  height: 200px;
  max-width: 425px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .c-form__textarea {
    height: 150px;
  }
}
.c-form__post {
  width: 150px;
  margin-bottom: 10px;
}
.c-form__select-wrap {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
}
@media (max-width: 767px) {
  .c-form__select-wrap {
    width: 100%;
  }
}
.c-form__select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3.75px;
  background: url(../img/select.png) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 9px;
}
.c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  display: block;
  border-radius: 10px;
  height: 60px;
  padding: 5px 25px;
  border: 1px solid #cdcdcd;
}
@media (max-width: 767px) {
  .c-form select {
    width: 100%;
    height: 50px;
  }
}
.c-form .is-error {
  display: block;
  color: red;
}

.c-btn {
  position: relative;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  color: #192981;
  text-decoration: none;
  font-weight: 500;
  line-height: 150%;
  font-size: 1.8rem;
  padding: 15px 20px;
  text-align: center;
  margin: 0;
  border: 1px solid #192981;
  transition: opacity 0.3s ease !important;
}
.c-btn > i {
  font-size: 1.2em;
}
.c-btn--auto {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: 1.5rem;
    padding: 15px 10px;
  }
}
.c-btn:hover {
  text-decoration: none;
  opacity: 0.7 !important;
}
.c-btn--angle::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  background: url(../img/bullet.png) 0 0 no-repeat;
  background-size: contain;
  width: 10px;
  height: 18px;
  margin-top: -8px;
}
.c-btn--text {
  color: #222222;
  background: none;
  border: none;
  border-bottom: 1px solid #222222;
  display: inline-block;
  margin: 50px 0 0;
  position: relative;
  text-align: left;
  width: auto;
  margin-left: 65px;
  padding: 10px 0 10px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn--text {
    margin-top: 15px;
  }
}
.c-btn--text::before {
  content: "";
  display: inline-block;
  background: url(../img/button.png) 0 0 no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  left: -65px;
  top: 0;
  transition: 0.3s ease;
}
.c-btn--text:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.c-btn--text:hover::before {
  left: -55px;
}

.c-title-2-caption {
  text-align: center;
  font-size: 12rem;
  color: #fafafc;
  text-align: center;
  margin: 110px 0 0;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-title-2-caption {
    font-size: 5rem;
    margin-top: 55px;
  }
}

.c-title-2 {
  text-align: center;
  font-weight: 500;
  color: #192981;
  font-size: 3.2rem;
  line-height: 1.5625em;
  position: relative;
  margin-block-start: 140px;
  margin-block-end: 90px;
  text-wrap: initial;
}
@media (max-width: 767px) {
  .c-title-2 {
    font-size: 2.2rem;
    margin-block-start: 50px;
    margin-block-end: 40px;
  }
}

.c-title-2-caption + .c-title-2 {
  margin-block-start: -205px;
}
@media (max-width: 767px) {
  .c-title-2-caption + .c-title-2 {
    margin-top: -95px;
  }
}

.c-title-3 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5em;
  margin-top: 80px;
  margin-bottom: 25px;
  position: relative;
  color: #192981;
  border-bottom: 1px solid #edeef1;
  padding-bottom: 0.5em;
}
.c-title-3--no-border {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .c-title-3 {
    font-size: 2rem;
  }
}

.c-title-2 + p.c-lead {
  margin-top: -45px;
}
@media (max-width: 767px) {
  .c-title-2 + p.c-lead {
    margin-top: -25px;
  }
}

.c-title-4 {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 15px;
  position: relative;
  color: #192981;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-title-4 {
    font-size: 1.8rem;
  }
}

.c-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media (max-width: 767px) {
  .c-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-card {
  position: relative;
}
.c-card__link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-card__pic {
  position: relative;
}
.c-card__content {
  position: relative;
}
.c-card__title {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.5em;
  margin-bottom: 10px;
  color: #192981;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 2.5rem;
  }
}
.c-card__label {
  text-align: left;
  letter-spacing: 0.3em;
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-card__label {
    font-size: 1rem;
  }
}
.c-card__desc {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.666em;
}
@media (max-width: 767px) {
  .c-card__desc {
    font-size: 1.4rem;
  }
}
.c-card .c-btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .c-card .c-btn {
    margin-top: 15px;
  }
}
.c-card .c-ic {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: scale(2);
  margin-top: -15px;
}

.c-qna {
  border-bottom: 1px solid #edeef1;
  padding: 30px 0;
}
.c-qna__list {
  margin-bottom: 0;
}
.c-qna__q {
  font-size: 2.6rem;
  line-height: 1.5em;
  margin: 0;
  position: relative;
  padding: 20px 0px;
  font-weight: 500;
  text-wrap: initial;
  color: #192981;
}
@media (max-width: 767px) {
  .c-qna__q {
    font-size: 2.2rem;
  }
}
.c-qna__a {
  padding: 20px 0px;
}
.c-qna__a > p {
  margin-top: 0;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media (max-width: 767px) {
  .c-qna__a {
    padding: 12px 0px;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
  margin-bottom: 10px;
  border-top: 1px solid #edeef1;
}
.c-table__th,
.c-table th {
  border-bottom: 1px solid #edeef1;
  padding: 20px 10px;
  white-space: nowrap;
  vertical-align: top;
  text-align: left;
  font-weight: 500;
  font-size: 1.8rem;
  color: #192981;
}
.c-table__td,
.c-table td {
  border-bottom: 1px solid #edeef1;
  padding: 20px 10px;
  font-size: 1.6rem;
  line-height: 1.875em;
}
.c-table__td iframe,
.c-table td iframe {
  display: block;
  width: 100%;
  margin-top: 30px;
  height: 350px;
}
.c-table__td a,
.c-table td a {
  color: #2484a0;
}
@media (max-width: 767px) {
  .c-table--scrollable {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.c-cp {
  position: relative;
  margin-top: -1px;
  z-index: 3;
}
@media (max-width: 767px) {
  .c-cp {
    padding: 50px 0;
  }
}
.c-cp__grid {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .c-cp__grid {
    display: block;
  }
}
.c-cp__pic {
  width: 50%;
  position: relative;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .c-cp__pic {
    width: 100%;
    padding: 0;
  }
}
.c-cp__content {
  width: 50%;
  position: relative;
  box-sizing: border-box;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .c-cp__content {
    width: 100%;
    padding: 0;
  }
}
.c-cp__title {
  font-weight: 500;
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  line-height: 1.5625em;
  color: #192981;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .c-cp__title {
    margin-bottom: 1em;
  }
}
.c-cp__lead {
  font-weight: 500;
  font-size: 2.6rem;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  line-height: 1.5625em;
  margin-bottom: 1em;
}
.c-cp__text {
  font-size: 1.6rem;
  line-height: 2.5em;
  margin-bottom: 2em;
}

.c-pop-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 55px 27px;
}
@media (max-width: 767px) {
  .c-pop-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

.c-pop {
  position: relative;
}
.c-pop__link {
  display: block;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}
.c-pop__link:hover {
  opacity: 0.7;
}
.c-pop__text {
  text-align: center;
  display: block;
  color: #222222;
  padding-top: 5px;
}
.c-pop--others {
  background: #f4f5f9;
}
.c-pop--others .c-pop__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
}
@media (max-width: 767px) {
  .c-pop--others .c-pop__link {
    padding: 15px;
    display: block;
  }
}
.c-pop--others .c-pop__pic {
  width: 50px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .c-pop--others .c-pop__pic {
    margin: 0 auto 10px;
  }
}
.c-pop--others .c-pop__text {
  padding: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .c-pop--others .c-pop__text {
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
  }
}

.c-tags {
  margin-bottom: 50px;
}

.c-tag {
  /* リンク要素のためインラインブロックに */
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  /* 基本のスタイル設定 */
  padding: 5px 15px;
  border: 1px solid #ccc; /* 薄いグレーの枠線 */
  border-radius: 20px; /* 角を丸く */
  font-size: 14px;
  text-decoration: none; /* 下線なし */
  white-space: nowrap; /* タグのテキストが途中で改行しないように */
  /* 非アクティブ時のデフォルト色 */
  color: #333; /* 文字色 */
  background-color: #f7f7f7; /* 背景色（ごく薄いグレー） */
  transition: all 0.2s ease; /* ホバー時のトランジション */
}

/* --- タグのアクティブ/選択状態 --- */
.c-tag.is-active {
  /* 選択されたタグのスタイル（色を反転させて強調） */
  color: #fff !important; /* 文字色を白に */
  background-color: #192981; /* メインカラー（青など）を背景色に */
  border-color: #192981; /* 枠線もメインカラーに */
  font-weight: bold;
}

/* --- ホバーエフェクト（クリック可能であることを示す） --- */
.c-tag:not(.is-active):hover {
  /* 非アクティブなタグのホバー時 */
  background-color: #e0e0e0; /* 背景を少し濃く */
  cursor: pointer;
}

.c-tag.is-active:hover {
  /* アクティブなタグのホバー時（視覚的な変化は控えめに） */
  opacity: 0.8;
}

/* ページネーションのリンクもタグとして使用される可能性を考慮し、
   aタグのデフォルトスタイルを上書き */
.c-tag:link,
.c-tag:visited {
  color: inherit;
}

.p-header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0);
}
.p-header.is-fixed {
  border: 1px solid #edeef1;
  background: rgba(255, 255, 255, 0.9);
}
.p-header__logo {
  /* width: 169px; */
  width: 50px;
  margin: 0;
  padding: 0;
  margin-top: 5px;
  margin-left: 15px;
  position: relative;
  transition: 0.3s ease;
  transform-origin: center top;
}
.p-header__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 55px;
    position: absolute;
  }
}
.p-header__logo-w {
  width: 160px;
  position: absolute;
  left: 10px;
  top: 5px;
}

.p-header__logo {
  opacity: 0;
}

.is-fixed .p-header__logo {
  opacity: 1;
}

.is-fixed .p-header__logo-w {
  display: none;
}

@media (max-width: 767px) {
  .p-header__logo-w {
    width: 130px;
  }
  .p-nav {
    position: initial;
  }
}
.p-nav__inner {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .p-nav__inner {
    width: 100vw;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 52;
    background: #f4f5f9;
    overflow: scroll;
    transform: translate3d(100%, 0, 0);
    transition: 0.3s ease;
    padding: 60px 20px !important;
  }
}
.p-nav.is-active .p-nav__inner {
  transform: translate3d(0%, 0, 0);
}
@media (max-width: 767px) {
  .p-nav.is-active .p-nav__inner {
    transform: translate3d(0%, 0, 0);
  }
}
.p-nav__list {
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 0px !important;
}
@media (max-width: 767px) {
  .p-nav__list {
    margin-top: 0px;
    display: block;
  }
}
.p-nav__item {
  position: relative;
}
@media (max-width: 767px) {
  .p-nav__item {
    text-align: left;
  }
}
.p-nav__item.has-child:hover > .p-nav__child {
  display: block;
}
.p-nav__item a {
  color: #222222;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: normal;
  display: block;
  text-align: center;
  transition: 0.3s ease;
  line-height: 1.25em;
  text-decoration: none;
  padding: 0 12px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-nav__item a:hover {
  background: #f7f8fb;
}
.p-nav__item a:hover .p-nav__ic {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-nav__item a {
    text-align: left;
    display: block;
    height: auto;
    padding: 25px 0;
  }
}
.p-nav__item--contact {
  text-align: center;
}
.p-nav__item--contact a {
  color: white !important;
  padding-left: 25px;
  padding-right: 25px;
  background: linear-gradient(
    to right,
    rgb(25, 41, 129) 0%,
    rgb(32, 88, 182) 100%
  );
}
.p-nav__item--contact a:hover {
  background: linear-gradient(
    to right,
    rgb(25, 41, 129) 0%,
    rgb(32, 88, 182) 100%
  );
  opacity: 0.7;
}
.p-nav__item--contact a::before {
  content: "";
  display: inline-block;
  background: url(../img/ic-mail.png) 0 0 no-repeat;
  background-size: contain;
  width: 30px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}
.p-nav__child {
  border-radius: 30px;
  margin-bottom: 27px;
  border: 2px solid #222222;
  background: #fff;
  position: absolute;
  left: -60px;
  top: 100%;
  width: 200px;
  padding: 25px 25px !important;
  display: none;
  border-radius: 50px;
}
.p-nav__child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 8.5px 14px 8.5px;
  border-color: transparent transparent #222222;
  translate: -50% -100%;
}
.p-nav__child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 6.2px 10.1px 6.2px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}
.p-nav__child li {
  border-bottom: 1px solid #cccccc;
}
.p-nav__child li a {
  color: #222222;
  display: block;
  text-align: center;
  padding: 10px 0px;
  position: relative;
  font-weight: bold;
  line-height: 1.875em;
  font-size: 1.6rem;
}
.p-nav__child li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #192981;
  transition: 0.3s ease;
}
.p-nav__child li a:hover::before {
  width: 100%;
}
.p-nav__child li:first-child > a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.p-nav__child li:last-child > a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: none;
}
.p-nav__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: translate3d(100%, 0, 0);
}
@media (max-width: 767px) {
  .p-nav__overlay {
    z-index: 21;
  }
}
.p-nav.is-active .p-nav__overlay {
  transform: translate3d(0%, 0, 0);
}
.p-nav__toggle {
  background: linear-gradient(
    to right,
    rgb(25, 41, 129) 0%,
    rgb(32, 88, 182) 100%
  );
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 62;
  border-radius: 100%;
  transition: 0.3s ease;
}
.p-nav__toggle span {
  background: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 15px;
  top: 16px;
  transition: 0.3s ease;
  border-radius: 9999px;
}
.p-nav__toggle span:nth-child(2) {
  top: 23px;
}
.p-nav__toggle span:nth-child(3) {
  top: 31px;
}
.p-nav__toggle small {
  position: absolute;
  left: 0;
  bottom: 5px;
  text-align: center;
  width: 100%;
  font-size: 1rem;
}
.p-nav__toggle.is-active span:nth-child(1) {
  top: 23px;
}
.p-nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.p-nav__toggle.is-active span:nth-child(3) {
  top: 23px;
}
.is-scroll .p-nav__reserve,
.is-scroll .p-nav__contact {
  opacity: 1;
}
.p-nav--footer {
  margin-top: -250px;
  margin-bottom: 130px;
}

.p-nav__item a {
  color: white;
}
@media (max-width: 767px) {
  .p-nav__item a {
    color: #222222;
  }
}
.p-nav__item a:hover {
  color: #222222;
}

.is-fixed .p-nav__item a {
  color: #222222;
}

.p-footer {
  position: relative;
  padding: 0px 0 130px;
}
@media (max-width: 767px) {
  .p-footer {
    padding-bottom: 50px;
  }
}
.p-footer__page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 80px;
  height: 80px;
  z-index: 20;
  box-shadow: 0px 0px 30px rgba(98, 144, 201, 0.2);
  border-radius: 100%;
}
@media (max-width: 767px) {
  .p-footer__page-top {
    width: 40px;
    height: 40px;
    right: 10px;
  }
}
.p-footer__page-top.is-hidden {
  display: none;
}
.p-footer__page-top.is-visible {
  display: block;
  animation: fadein ease 500ms 1;
}
.p-footer__page-top.is-absolute {
  position: absolute;
  right: 15px;
  bottom: calc(100% - 30px);
}
@media (max-width: 767px) {
  .p-footer__page-top.is-absolute {
    right: 10px;
    bottom: calc(100% - 20px);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-footer__nav {
  background: #f4f5f9;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-footer__nav {
    padding: 30px 0;
  }
}
.p-footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  gap: clamp(20px, 5vw, 40px);
}
.p-footer__list a {
  text-decoration: none;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-footer__list a {
    display: block;
    text-align: center;
    padding: 5px 0;
  }
}
@media (max-width: 767px) {
  .p-footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.p-footer__top {
  display: flex;
  padding-top: 100px;
  padding-bottom: 60px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-footer__top {
    display: block;
    padding: 50px 0;
  }
}
.p-footer__logo {
  width: 120px;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .p-footer__logo {
    margin: 0 auto 20px;
  }
}
.p-footer__addr {
  flex: 1;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .p-footer__addr {
    font-size: 1.4rem;
    text-align: center;
  }
}
.p-footer__mid {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-footer__mid {
    display: block;
  }
}
.p-footer__links {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-footer__links {
    justify-content: center;
  }
}
.p-footer__links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}
.p-footer__links a:hover {
  text-decoration: underline;
}
.p-footer__sns {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-footer__sns {
    margin: 30px 0;
    justify-content: center;
  }
}
.p-footer__sns a {
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
}
.p-footer__sns a:hover {
  opacity: 0.7;
}
.p-footer__copyright {
  text-align: left;
  color: white;
  margin-block-start: 0;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .p-footer__copyright {
    text-align: center;
  }
}

.p-page {
  position: relative;
}

.p-page-header {
  text-align: center;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url(../img/page-header.jpg) center top no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .p-page-header {
    height: 200px;
  }
}
.p-page-header--support {
  background: url(../img/page-header-support.jpg) center center no-repeat;
  background-size: cover;
}
.p-page-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.3);
  z-index: 0;
}
@media (max-width: 767px) {
  .p-page-header {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 65px;
  }
}
.p-page-header__title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.666em;
  position: relative;
  text-align: center;
  margin: 0;
  color: white;
  letter-spacing: 0.05em;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-page-header__title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.p-page-header__caption {
  text-align: center;
  font-size: 2.4rem;
  color: #80cafa;
  display: block;
  position: relative;
  margin: 0;
}
@media (max-width: 767px) {
  .p-page-header__caption {
    font-size: 1rem;
  }
}

.p-page__content {
  position: relative;
  line-height: 1.875em;
}
.p-page__content section p {
  margin-bottom: 1em;
}

.p-sidebar {
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar {
    margin-bottom: 100px;
  }
}
.p-sidebar__block {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-sidebar__block {
    margin-bottom: 40px;
  }
}
.p-sidebar__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.8em;
  color: #192981;
  text-align: left;
  padding: 0;
  margin: 0 0 0.5em;
}
.p-sidebar__list {
  margin: 0;
}
.p-sidebar__list > li {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-sidebar__list > li {
    margin-bottom: 0em;
  }
}
.p-sidebar__list > li > a {
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  text-align: left;
}
@media (max-width: 767px) {
  .p-sidebar__list > li > a {
    padding: 10px 0;
  }
}
.p-sidebar__list > li > a:hover {
  text-decoration: underline;
}
.p-sidebar__list--child > li {
  margin-bottom: 8px;
}
.p-sidebar__list--child > li > a {
  display: block;
  background: #eff6fb;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 2em;
  padding: 7px 16px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
.p-sidebar__list--child > li > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -3.75px;
  background: url(../img/angle-right-blue.png) 0 0 no-repeat;
  background-size: contain;
  width: 4.5px;
  height: 6.5px;
}
.p-sidebar__list--child > li > a:hover {
  background: #faf7e6;
}
.p-sidebar__select-wrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .p-sidebar__select-wrap {
    width: 100%;
  }
}
.p-sidebar__select-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3.25px;
  background: url(../img/select.png) 0 0 no-repeat;
  background-size: contain;
  width: 11px;
  height: 6.5px;
}
.p-sidebar__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #afc3e4;
  display: block;
  border-radius: 0;
  height: 41px;
  font-size: 1.4rem;
  padding: 6px 14px;
}
@media (max-width: 767px) {
  .p-sidebar__select {
    width: 100%;
  }
}
.p-sidebar .c-stick--ladybug-bug {
  bottom: -20px;
  right: -20px;
}
@media (max-width: 767px) {
  .p-sidebar .c-stick--ladybug-bug {
    bottom: -40px;
  }
}
.p-sidebar .c-stick--bird-3 {
  left: 10px;
  top: -52px;
}
@media (max-width: 767px) {
  .p-sidebar .c-stick--bird-3 {
    top: -43px;
  }
}

.u-left {
  text-align: left !important;
}

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

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

@media (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.u-small {
  font-size: 0.7em;
}

.u-big {
  font-size: 1.3em;
}

.u-font-lg {
  font-size: 2.4rem !important;
}

.u-bold {
  font-weight: bold;
}

.u-tate {
  writing-mode: vertical-rl;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pic-round {
  border-radius: 15px;
}

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

@media (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.u-list-reset li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.u-over {
  transition: 0.3s ease;
}

.u-over:hover {
  opacity: 0.7;
}

.u-color-green {
  color: #52887c !important;
}

.u-color-blue {
  color: #192981 !important;
}

.u-color-blue-sub {
  color: #0050ad !important;
}

.u-color-white {
  color: #fff !important;
}

.u-color-lightblue {
  color: #3ed2e3 !important;
}

.u-color-yellow {
  color: #ffdc6b !important;
}

.u-color-pink {
  color: #f7c1bc !important;
}

.u-color-brown {
  color: #503d30 !important;
}

.u-color-gray {
  color: #999999 !important;
}

.u-bleed-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-right {
    margin-right: 0;
    width: auto;
  }
}

.u-bleed-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .u-bleed-left {
    margin-left: 0;
    width: 100%;
  }
}

/*
BG
*/
.u-bg-blue {
  background: #f4f5f9;
}

.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
