* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  height: 100%;
}
/* @media screen and (max-width:1920px) {
  html {
    font-size: calc(100vw / 1920 * 10);
  }
} */
@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: #343434;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  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: #343434;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: .3s;
}
a:hover {
  opacity: .75;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
dl, ul {
  list-style: none;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.container {
  margin: 7rem auto;
  max-width: 120rem;
  /* padding: 0 2rem; */
}
@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 1.5rem;
    margin: 2rem auto;
  }
}
main {
  /* padding-top: 11.6rem; */
  padding-top: calc((116 / 1920) *100vw);
}
@media screen and (min-width: 1920px) {
  main {
    padding-top: 11.6rem;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}
/* ------------------------------------------
  header
------------------------------------------ */
header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
   height: 11.6rem; 
  /* height: calc((116 / 1920) *100vw);*/
}
@media screen and (min-width: 1920px) {
  header {
    height: 11.6rem;
  }
}
.header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 192rem;
  /* min-width: 120rem; */
}
.header_container .logo {
  /* width: 50rem; */
  max-width: 43.5rem;
  width: calc((435 / 1920) *100vw);
  padding-left: 6rem;
}
.header_container .logo a {
  display: block;
}
.header_container nav {
  margin-left: auto;
}
.header_container nav .header_menu {
  align-items: center;
  column-gap: 2rem;
  display: flex;
  height: 100%;
}
.header_container nav .header_menu .link {
  align-items: center;
  column-gap: 2rem;
  display: flex;
}
.header_container nav .header_menu li .link .ja {
  /* font-size: 1.8rem; */
  font-size: calc((18 / 1920) *100vw);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1920px) {
  .header_container nav .header_menu li .link .ja {
    font-size: 1.8rem;
  }
}
.header_container nav .header_menu li:first-child .link .en {
  color: #221816;
}
.header_container nav .header_menu li .link .border {
  background-color: #06B455;
  height: 6.5rem;
  width: .1rem;
}
.header_container .header_line {
  background-color: #00A65A;
  display: flex;
  align-items: center;
  /* padding: 1.5rem 2rem 1.7rem 5rem; */
  padding: calc((15 / 1920) *100vw) calc((20 / 1920) *100vw) calc((17 / 1920) *100vw) calc((44 / 1920) *100vw);
  /* gap: 3.5rem; */
  gap: calc((35 / 1920) *100vw);
 height: 11.6rem; 
}
@media screen and (min-width: 1920px) {
  .header_container .header_line {
    padding: 1.5rem 2rem 1.7rem 4.4rem;
    gap: 3.5rem;
  }
}
.header_container .header_line p {
  color: #FFFFFF;
  /* font-size: 3.4rem; */
  font-size: calc((32 / 1920) *100vw);
  /* font-size: clamp(1.125rem, -0.125rem + 1.67vw, 1.875rem); */
  /* font-size: clamp(1.8rem, -0.867rem + 3.56vw, 3.4rem); */
  font-weight: 700;
  letter-spacing: .02em;
/* padding: 2.5rem 1rem 2.5rem 0rem;*/
}
.header_container .header_line img {
  max-width: 8.4rem;
  width: calc((84 / 1920) *100vw);
}
.header_container .heaader_sp_flex {
  display: none;
}
@media screen and (max-width: 767px) {
  header {
    height: 6rem;
  }
  .header_container .logo {
    width: 13rem;
    padding-left: 2rem;
  }
  .header_container .heaader_sp_flex {
    display: flex;
  }
  .header_container .heaader_sp_flex .header_line_sp {
    background-color: #00A65A;
  }
  .header_container .heaader_sp_flex .header_line_sp img {
    width: 6rem;
  }
  .ham_box {
    cursor: pointer;
    display: block;
    position: relative;
    height: 6rem;
    width: 6rem;
    background-color: #939393;
  }
  .ham_box span {
    background-color: #FFFFFF;
    border-radius: .3rem;
    display: block;
    height: .2rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: .3s ease;
    width: 60%;
  }
  .ham_box span:nth-child(1) {
    top: 2rem;
  }
  .ham_box span:nth-child(2) {
    top: 3rem;
  }
  .ham_box span:nth-child(3) {
    top: 4rem;
  }
  .ham_box.active span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  .ham_box.active span:nth-child(2) {
    opacity: 0;
  }
  .ham_box.active span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }
  .header_container nav {
    background-color: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 5rem);
    height: calc(100svh - 5rem);
    justify-content: flex-start;
    left: 0;
    margin-top: 0;
    opacity: 0;
    overflow-y: scroll;
    padding: 4rem 2rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 6rem;
    transition: .3s all ease;
    visibility: hidden;
    z-index: 5;
    z-index: 9999;
  }
  header nav.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .header_container nav .header_menu {
    align-items: center;
    flex-direction: column;
    gap: 3rem 0;
    height: auto;
    justify-content: center;
  }
  .header_container nav .header_menu a {
    align-items: center;
    column-gap: 2rem;
    display: flex;
  }
  .header_container nav .header_menu li .link .ja {
    font-size: 1.8rem;
  }
  .header_container nav .header_menu li a .en {
    color: #7d7d7d;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding-top: .6rem;
  }
  .header_container nav .header_menu li:first-child a .en {
    color: #221816;
  }
  .header_container nav .header_menu li a .border {
    display: none;
  }
  .header_container nav .header_menu li a .ja {
    color: #221816;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .header_container .header_line {
    display: none !important;
  }
}
/* ------------------------------------------
  footer
------------------------------------------ */
footer {
  /* background: linear-gradient(90deg, #fff 0%, #fff 33%, #3a4d98 33%, #3a4d98 100%);
  padding-bottom: 2.5rem;
  margin-top: 15rem; */
  background-color: #EAEFFF;
  padding: 5rem 0;
}
.footer_container {
  max-width: 136.6rem;
  margin: 0 auto;
}
footer .padding {
  padding: 0 2rem;
}
footer .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid #4D4D4D;
  padding-bottom: 1rem;
}
footer .flex .footer_logo {
  width: 31.5rem;
}
footer .flex .insta {
  width: 4rem;
}
footer .address {
  color: #4D4D4D;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
footer .menu {
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
}
footer .menu ul {
  border-left: 0.5px solid #4D4D4D;
  padding-left: 1rem;
}
footer .menu ul .main {
  padding-bottom: 3rem;
}
footer .menu ul .main a {
  color: #4D4D4D;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
footer .menu ul .sub a {
  color: #4D4D4D;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.1;
}
footer small {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  footer {
    background-color: #EAEFFF;
 	padding: 3rem 0 1rem 0;
  }
  footer .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid #4D4D4D;
    padding-bottom: 1rem;
  }
  footer .flex .footer_logo {
    width: 15rem;
  }
  footer .flex .insta {
    width: 2rem;
  }
  footer .address {
    color: #4D4D4D;
    font-size: 1.5rem;
    line-height: 1.9;
  }
  footer .menu {
    flex-direction: column;
    padding-top: 2.5rem;
    gap: 2rem;
  }
  footer .menu ul {
    border-left: none;
    border-top: 0.5px solid #4D4D4D;
    padding-top: 1rem;
  }
  footer .menu ul .main {
    padding-bottom: 1rem;
  }
  footer .menu ul .main a {
    color: #4D4D4D;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
  }
  footer .menu ul .sub a {
    color: #4D4D4D;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
  }
  footer small {
    font-size: 1rem;
    padding-top: 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: .7rem;
  }
  .breadcrumb li {
    font-size: 1.3rem;
  }
  .breadcrumb li:not(:first-child)::before {
    margin-right: 1rem;
  }
  .breadcrumb li + li {
    margin-left: .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: .5rem;
  }
  .pagination li a {
    font-size: 1.7rem;
    line-height: 3rem;
    width: 3rem;
    border-radius: .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: .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: .2s;
  line-height: 4rem;
  color: #394B99;
  font-size: 1.7rem;
  border-radius: 1rem;
  border: .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: .8rem 1.3rem;
    padding: 0 1.5rem 0 3rem;
    border-radius: .5rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .single_page_pagination .link.next {
    background-position: right 1rem center;
    background-size: .8rem 1.3rem;
    padding: 0 3rem 0 1.5rem;
    border-radius: .5rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
}

