* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}
html,
body {
  /* overflow-x: hidden; */
}

/* @media screen and (max-width:1920px) {
  html {
    font-size: calc(100vw / 1920 * 10);
  }
} */

@font-face {
  font-family: "linespeed";
  src: url("../fonts/LINESeedSans_A_Rg.ttf") format("truetype");
  src: url("../fonts/LINESeedSans_A_Rg.woff") format("woff");
  src: url("../fonts/LINESeedSans_A_Rg.woff2") format("woff2");
  src: url("../fonts/LINESeedSans_A_Rg.eot") format("eot");
}

@media screen and (max-width: 1240px) {
  html {
    font-size: calc(100vw / 1240 * 10);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  color: #1c1c1c;
  font-family: "Noto Sans JP", sans-serif; /* Noto Sans CJK JP */
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  /* min-width: 86.1%; */
  /* padding-top: 11.7rem; */
  -webkit-text-size-adjust: none;
}

body.active {
  height: 100%;
  overflow: hidden;
}

a {
  color: #221816;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.75;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

dl,
ul {
  list-style: none;
}
.wrapper {
  display: flex;
  flex-direction: row;
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.container {
  margin: 0 auto;
  max-width: 126rem;
  padding: 0 3rem;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: auto;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .container {
    padding: 0 3rem;
  }
}
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
/* ------------------------------------------
  sidebar
------------------------------------------ */
.sidebar {
  background-color: #e1f1ff;
  min-width: 32rem;
  max-width: 32rem;
  z-index: 3;
  display: block;
  /* position: relative; */
  padding: 3rem 0px;
  /* left: 0; */
  box-shadow: 10px 0px 15px -5px #808080;
  position: relative;
  padding: 38px 0px;
  left: 0;
}
@media screen and (max-width: 1420px) {
  .sidebar {
    display: none;
  }
}
.sidebar .menus {
  position: sticky;
  /* position: fixed; */
  top: 0;
  height: max-content;
  min-height: 100vh;
}
.sidebar .menus .scroll {
  scrollbar-width: none;
}
.sidebar .menus .scroll .logo {
  display: flex;
  width: 100%;
  justify-content: center;
}
.sidebar .menus .scroll .logo img {
  object-fit: cover;
  max-width: 16rem;
  width: 100%;
  height: auto;
}
.sidebar .menus .scroll .ttl {
  padding-block: 2rem;
  text-align: center;
}
.sidebar .menus .scroll .ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #0054ab;
  font-size: 1.1rem;
  line-height: calc(21 / 11);
  letter-spacing: 0.1em;
}
.sidebar .menus .scroll .ttl .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0054ab;
  font-size: 1.6rem;
  line-height: calc(21 / 16);
  letter-spacing: 0.35em;
}
.sidebar .menus .scroll .padding {
  padding-inline: 3rem;
}
.sidebar .menus .scroll .menu {
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  margin-bottom: 5rem;
}

.sidebar .menus .scroll .menu_item {
  width: 100%;
  position: relative;
}

.sidebar .menus .scroll .sub_menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  display: block;
  position: absolute;
  right: 0;
  top: -2rem;
  transform: translateX(100%);
  width: 32rem;
  background-color: #0054ab;
  padding: 2rem;
}


.sidebar .menus .scroll .menu_item:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sidebar .menus .scroll .sub_menu_list_item_link {
  color: #fff;
  padding: 1rem 0;
  display: block;
  font-size: 1.6rem;
}


.sidebar .menus .scroll .menu .link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding-block: 1rem;
  color: #0054ab;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}
.sidebar .menus .scroll .menu .link:hover {
  background-color: #0054ab;
  color: #ffffff;
}
.sidebar .menus .scroll .menu .link:last-of-type {
  margin-bottom: 0;
}
.sidebar .menus .scroll .tel {
  background-color: #0054ab;
  border-radius: 5px;
  /* max-width: 22.4rem; */
  width: 100%;
  margin: 0 auto 1rem auto;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 1rem;
}
.sidebar .menus .scroll .tel img {
  max-width: 3rem;
  width: 100%;
}
.sidebar .menus .scroll .tel .group {
  color: #ffffff;
}
.sidebar .menus .scroll .tel .group .txt {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: calc(27 / 25);
  letter-spacing: 0.05em;
}
.sidebar .menus .scroll .tel .group .num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  /* line-height: calc(39 / 23); */
  letter-spacing: 0.05em;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.sidebar .menus .scroll .tel .group p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: calc(12 / 9);
  text-align: center;
}
.sidebar .menus .scroll .contact {
  background-color: #d82227;
  border-radius: 5px;
  /* max-width: 22.4rem; */
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.65rem;
  margin-bottom: 3rem;
}
.sidebar .menus .scroll .contact img {
  max-width: 4.5rem;
  width: 100%;
}
.sidebar .menus .scroll .contact img {
  max-width: 4.5rem;
  width: 100%;
}
.sidebar .menus .scroll .contact .group .txt {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: calc(19 / 19);
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}
.sidebar .menus .scroll .contact .group span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: calc(19 / 13);
  letter-spacing: 0.05em;
  color: #ffffff;
}
.sidebar .menus .scroll .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}
.sidebar .menus .scroll .sns .insta img {
  max-width: 5.4rem;
  width: 100%;
}
.sidebar .menus .scroll .sns .youtube img {
  max-width: 5.7rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sidebar {
    display: none;
  }
}
/* header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 12rem;
  background-color: #ffe9d2;
  background-image: url(../img/top/main_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
header .flex {
  display: flex;
}
.header_container {
  padding-inline: 4rem 6.3rem;
  margin-left: auto;
}
.header_container .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.header_container .flex a {
  display: flex;
  gap: 1rem;
}
.header_container .logo {
  width: calc((400 / 1920) * 100vw);
}
@media screen and (min-width: 1920px) {
  .header_container .logo {
    width: 43rem;
  }
}
.header_container .lists {
  display: flex;
  gap: calc((60 / 1920) * 100vw);
}
@media screen and (min-width: 1920px) {
  .header_container .lists {
    gap: 6rem;
  }
}
.header_container .lists .list {
  text-align: center;
  border: 4px solid #333333;
  border-top: none;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.7rem;
}
.header_container .lists .pink {
  background-color: #ff96a5;
}
.header_container .lists .blue {
  background-color: #78bcff;
}
.header_container .lists .yellow {
  background-color: #ffb52a;
}
.header_container .lists .red {
  background-color: #e60039;
}
.header_container .lists .link {
  font-weight: 500;
  text-align: center;
  font-size: calc((21 / 1920) * 100vw);
  line-height: calc(26 / 21);
  letter-spacing: 0.1em;
  width: calc((217 / 1920) * 100vw);
  display: block;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .header_container .lists .link {
    font-size: 2.1rem;
    width: 21.7rem;
  }
}
.header_container .lists .red .link {
  color: #ffffff;
}
.ham_box {
  display: none;
}
.header_sp {
  display: none;
} */

header {
  display: none;
}
@media screen and (max-width: 1420px) {
  header {
    display: block;
    height: 9rem;
    padding-block: 1rem;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  .header_container {
    padding-inline: 2rem;
  }
  .header_container .flex {
    display: flex;
    align-items: center;
  }
  header .flex .logo {
    position: relative;
    z-index: 9999;
    width: 20rem;
  }
  .header_pc {
    display: none;
  }
  .header_container .lists .contact a {
    font-size: 1.8rem;
  }
  .ham_box {
    cursor: pointer;
    display: block;
    position: relative;
    height: 5rem;
    width: 5rem;
    z-index: 9999;
    border: 3px solid #1c1c1c;
    border-radius: 5px;
    margin-left: auto;
  }

  .ham_box span {
    background-color: #1c1c1c;
    border-radius: 0.3rem;
    display: block;
    height: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.3s ease;
    width: 60%;
  }

  .ham_box span:nth-child(1) {
    top: 0.8rem;
  }
  .ham_box span:nth-child(2) {
    top: 2rem;
  }
  .ham_box span:nth-child(3) {
    top: 3.2rem;
  }
  .ham_box.active span:nth-child(1) {
    top: 45%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  .ham_box.active span:nth-child(2) {
    opacity: 0;
  }
  .ham_box.active span:nth-child(3) {
    top: 45%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }
  .header_sp {
    display: block;
  }
  .header_container .header_sp nav {
    background-color: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: calc(100svh - 5rem);
    height: 100vh;
    justify-content: flex-start;
    left: 0;
    padding-block: 7rem;
    opacity: 0;
    overflow-y: scroll;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: 0.3s all ease;
    visibility: hidden;
    z-index: 5;
    z-index: 1000;
  }
  header .header_sp nav.active {
    background-color: #e1f1ff;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }


  .header_container .header_sp .sub_menu_list_item_link {
    display: block;
    text-align: center;
    padding: .8rem 0;
  }

  .header_container .header_sp .sp_link {
    display: block;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 0.2em;
    width: 100%;
    text-align: center;
    padding-block: 1rem;
    color: #0054ab;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
  }
  .header_container .header_sp .sp_link:hover {
    background-color: #0054ab;
    color: #ffffff;
  }
  .header_container .header_sp .sp_link.has_submenu::after {
    content: '\FF0B';
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 1.6rem;
  }
  .header_container .header_sp .sp_link.has_submenu.open::after {
    content: '\30FC';
  }
  .header_container .header_sp .sub_menu {
    display: none;
  }
  .header_container .header_sp .tel {
    background-color: #0054ab;
    border-radius: 5px;
    max-width: 25rem;
    width: 100%;
    margin: 2.5rem auto 1rem auto;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 1rem;
  }
  .header_container .header_sp .tel img {
    max-width: 3rem;
    width: 100%;
  }
  .header_container .header_sp .tel .group {
    color: #ffffff;
  }
  .header_container .header_sp .tel .group .txt {
    /* font-family: ; */
    /* font-weight: 700; */
    font-size: 1.5rem;
    line-height: calc(27 / 25);
    letter-spacing: 0.05em;
  }
  .header_container .header_sp .tel .group .num {
    /* font-family: ; */
    /* font-weight: 700; */
    font-size: 2.2rem;
    /* line-height: calc(39 / 23); */
    letter-spacing: 0.05em;
    display: inline-block;
    padding-bottom: 0.5rem;
  }
  .header_container .header_sp .tel .group p {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: calc(12 / 9);
    text-align: center;
  }
  .header_container .header_sp .contact {
    background-color: #d82227;
    border-radius: 5px;
    max-width: 25rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-block: 1.65rem;
    margin-bottom: 3rem;
  }
  .header_container .header_sp .contact img {
    max-width: 4.5rem;
    width: 100%;
  }
  .header_container .header_sp .contact img {
    max-width: 4.5rem;
    width: 100%;
  }
  .header_container .header_sp .contact .group .txt {
    /* font-family: ; */
    /* font-weight: 700; */
    font-size: 1.9rem;
    line-height: calc(19 / 19);
    letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
  }
  .header_container .header_sp .contact .group span {
    display: block;
    /* font-family: ; */
    /* font-weight: 700; */
    font-size: 1.3rem;
    line-height: calc(19 / 13);
    letter-spacing: 0.05em;
    color: #ffffff;
  }
  .header_container .header_sp .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.8rem;
  }
  .header_container .header_sp .sns .insta img {
    max-width: 5.4rem;
    width: 100%;
  }
  .header_container .header_sp .sns .youtube img {
    max-width: 5.7rem;
    width: 100%;
  }
}

/* ------------------------------------------
  sec_mv
------------------------------------------ */
.sec_mv {
  background-color: #ffe9d2;
  background-image: url(../img/top/main_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 65rem 5rem;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.sec_mv .sec_ttl {
  margin: 0 auto;
}
.sec_mv .sec_ttl .ttl {
  max-width: 110rem;
  width: 100%;
  color: #1c1c1c;
  font-size: 6rem;
  font-weight: 500;
  line-height: calc(150 / 60);
  letter-spacing: 0.2em;
}
.sec_mv .sec_ttl .ttl span {
  font-family: "Noto Serif", serif;
  font-weight: 500;
  background-color: #ffffff;
  display: table;
  padding-inline: 2rem;
}
.sec_mv .sec_ttl .ttl span:first-child {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .sec_mv {
    padding-block: 10rem 2rem;
  }
  .sec_mv .sec_ttl .ttl {
    font-size: 1.6em;
  }
  .sec_mv .sec_ttl .ttl span {
    padding-inline: 1rem;
  }
  .sec_mv .sec_ttl .ttl span:first-child {
    margin-bottom: 1.5rem;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
footer {
  background-color: #0054ab;
  padding-block: 10rem 3rem;
  padding-inline: 3rem;
}
footer .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 10rem;
}
footer .logo {
  max-width: 29.1rem;
  width: 100%;
}
footer .logo img {
  margin-top: -5rem;
}
footer span {
  border-top: 1px solid #fff;
  width: 10rem;
  transform: rotate(90deg);
}
footer .adress {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(29 / 16);
  letter-spacing: 0.1em;
}
footer small {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: calc(24 / 14);
  text-align: center;
  display: block;
}

@media screen and (max-width: 767px) {
  footer {
    padding-block: 5rem 1.5rem;
  }
  footer .flex {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 5rem;
  }
  footer .logo {
    max-width: 20rem;
    width: 100%;
  }
  footer .logo img {
    margin-top: 0;
  }
  footer span {
    width: 100%;
    transform: rotate(0);
  }
  footer .adress {
    color: #fff;
    font-size: 1.4rem;
  }
  footer small {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------
  ぱんくず
------------------------------------------ */
.sub_breadcrumb {
  margin-top: 3rem;
  font-size: 1.6rem;
}

.sub_breadcrumb .flex {
  display: flex;
  justify-content: space-between;
}

.breadcrumb {
  display: flex;
}

.breadcrumb li:not(:first-child)::before {
  content: "＞";
  margin-right: 2rem;
}

.breadcrumb li + li {
  margin-left: 2rem;
}

.breadcrumb li a {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .sub_breadcrumb {
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  .sub_breadcrumb .flex {
    display: block;
  }
  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .breadcrumb li {
    font-size: 1.3rem;
  }

  .breadcrumb li:not(:first-child)::before {
    margin-right: 1rem;
  }

  .breadcrumb li + li {
    margin-left: 0.7rem;
  }

  .breadcrumb li a {
    font-size: 1.3rem;
  }
}

/* ------------------------------------------
  投稿一覧ページネーション
------------------------------------------ */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
  align-items: center;
  gap: 0 1rem;
}

.pagination li {
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
  border-radius: 1rem;
  text-align: center;
  width: 4rem;
}

.pagination li.this {
  background-color: #394b99;
  color: #fff;
}
.pagination li a {
  display: block;
  font-size: 2rem;
  line-height: 4rem;
  color: #394b99;
  text-align: center;
  text-align: center;
  border-radius: 1rem;
}

.pagination li.prev a {
  background-image: url(../img/top/more_btn_arrow_prev.png);
  background-size: 1.5rem 1.65rem;
  background-position: center;
  background-repeat: no-repeat;
  height: 4rem;
}
.pagination li.next a {
  background-image: url(../img/top/more_btn_arrow.png);
  background-size: 1.5rem 1.65rem;
  background-position: center;
  background-repeat: no-repeat;
  height: 4rem;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 4rem;
    gap: 0 1rem;
  }

  .pagination li {
    font-size: 1.7rem;
    line-height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
  }

  .pagination li a {
    font-size: 1.7rem;
    line-height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
  }

  .pagination li.prev a {
    height: 3rem;
    background-size: 1rem 1.6rem;
  }

  .pagination li.next a {
    height: 3rem;
    background-size: 1rem 1.6rem;
  }
}

/* ------------------------------------------
  投稿詳細ページネーション
------------------------------------------ */
.single_page_pagination {
  margin-top: 6rem;
}

.single_page_pagination .link.prev {
  background-image: url(../img/top/more_btn_arrow_prev.png);
  background-position: left 1.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.65rem;
  cursor: pointer;
  float: left;
  padding: 0 2rem 0 4rem;
  line-height: 4rem;
  color: #394b99;
  font-size: 1.7rem;
  border-radius: 1rem;
  border: 0.1rem solid;
}

.single_page_pagination .link.next {
  background-image: url(../img/top/more_btn_arrow.png);
  background-position: right 1.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.65rem;
  cursor: pointer;
  float: right;
  padding: 0 4rem 0 2rem;
  transition: 0.2s;
  line-height: 4rem;
  color: #394b99;
  font-size: 1.7rem;
  border-radius: 1rem;
  border: 0.1rem solid;
}

@media screen and (max-width: 768px) {
  .single_page_pagination {
    margin-top: 3rem;
  }

  .single_page_pagination .link.prev {
    background-position: left 1rem center;
    background-size: 0.8rem 1.3rem;
    padding: 0 1.5rem 0 3rem;
    border-radius: 0.5rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }

  .single_page_pagination .link.next {
    background-position: right 1rem center;
    background-size: 0.8rem 1.3rem;
    padding: 0 3rem 0 1.5rem;
    border-radius: 0.5rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
}

