@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* -------------------------------------------------------
reset
------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

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

img {
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

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

select {
  outline: none;
  border: none;
}

html,
body {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5625;
  -webkit-text-size-adjust: 100%;
  color: #2A2A2A;
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}
body.menuOpen {
  overflow: hidden;
}
@media screen and (min-width: 1201px) {
  body.menuOpen {
    overflow: auto;
  }
}

.jpn {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.eng {
  font-family: "Heebo", sans-serif !important;
}

a {
  color: #272021;
  text-decoration: none;
  transition: 0.4s;
}

.blank-link {
  position: relative;
  padding-right: 27px;
}

.blank-link:after {
  content: "";
  width: 19px;
  height: 19px;
  background: url(/assets/img/common/icon_other-site_b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.preload * {
  transition: none !important;
}

main {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1025px) {
  main {
    padding-top: 118px;
  }
}
@media screen and (max-width: 1024px) {
  main.contentsPage {
    padding-top: 118px;
  }
}
main.contentsPage .header {
  background-color: none;
}

.mgb10 {
  margin-bottom: 10px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb30 {
  margin-bottom: 30px !important;
}

.mgb40 {
  margin-bottom: 40px !important;
}

.mgb50 {
  margin-bottom: 50px !important;
}

.sp {
  display: block;
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
}

.txtBold {
  font-weight: bold;
}

.txtCenter {
  text-align: center;
}

.anim {
  opacity: 0;
}

.anim.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.flexBox {
  display: flex;
  flex-wrap: wrap;
}
.linkWrap a {
  display: flex;
  color: #fff;
  background: #33BE8C;
  justify-content: center;
  align-items: center;
  border: 1px solid #33BE8C;
  width: 100%;
  font-weight: 500;
  position: relative;
}
.linkWrap a:hover {
  background: #fff;
  color: #33BE8C;
}
.linkWrap a:after {
  content: "";
  position: absolute;
  background: url(/assets/img/top/arw_r.svg);
  background-size: contain;
  right: 14px;
  width: 8px;
  height: 8px;
  margin: auto 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .linkWrap {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.w-90p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.void {
  padding: 0 !important;
  margin: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

#bnr .sec__inner {
  padding: 0;
}
@media screen and (min-width: 1025px) {
  #bnr .sec__inner {
    padding: 0 20px;
  }
}

.p-bn__list {
  background: #fff;
  border-radius: 30px 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 0px 0;
  position: relative;
  top: -40px;
}
@media screen and (min-width: 768px) {
  .p-bn__list {
    top: -20px;
  }
}
@media screen and (min-width: 1260px) {
  .p-bn__list {
    top: -90px;
  }
}
.p-bn__list--item {
  width: calc((100% - 10px) / 3);
}

.p-archive {
  margin-top: 20px;
}
.p-archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-archive__list__item {
  width: calc((100% - 20px) / 2);
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item {
    width: calc((100% - 58px) / 3);
    margin-top: 60px;
  }
}
.p-archive__list__item__image {
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item__image {
    border-radius: 10px;
  }
}
.p-archive__list__item__date {
  width: 100%;
  display: block;
  line-height: 1.2857;
  padding-top: 8px;
  font-weight: 500;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item__date {
    padding-top: 12px;
    font-size: 1.4rem;
  }
}
.p-archive__list__item__title {
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5625;
  padding-top: 4px;
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item__title {
    font-size: 1.6rem;
  }
}
.p-archive__list__item__tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  display: flex;
  margin-top: 10px;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item__tags {
    font-size: 1.1rem;
    margin-top: 16px;
  }
}
.p-archive__list__item__tags span {
  border: 1px solid #68767D;
  border-radius: 13px;
  display: flex;
  padding: 3.5px 8px;
}
@media screen and (min-width: 768px) {
  .p-archive__list__item__tags span {
    padding: 3.5px 12.5px;
  }
}
.p-archive__list__item a {
  color: #68767D;
  letter-spacing: 0.02em;
}
.p-archive__list__item a img, .p-archive__list__item a p {
  transition: 0.4s;
}
.p-archive__list__item a:hover {
  opacity: 1;
}
.p-archive__list__item a:hover img {
  transform: scale(1.1);
}
.p-archive__list__item a:hover p {
  opacity: 0.6;
}

.more_link a {
  font-weight: 800;
  padding-right: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 264px;
  height: 50px;
  font-size: 4.5vw;
}
@media screen and (min-width: 768px) {
  .more_link a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .more_link a {
    font-size: 2.4rem;
    padding-right: 0;
    height: 72px;
  }
}
@media screen and (min-width: 1260px) {
  .more_link a {
    font-size: 3rem;
  }
}
.more_link a:after {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  background: url(/assets/img/common/btn_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 1025px) {
  .more_link a:after {
    width: 72px;
    height: 72px;
  }
}

.dl-btn {
  background: #DCCCA4;
  color: #000;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 60px;
  padding: 15px 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  transition: 0.4s !important;
}
@media screen and (min-width: 768px) {
  .dl-btn {
    max-width: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .dl-btn {
    padding: 27.5px 5px;
    border-radius: 60px;
    font-size: 3rem;
    max-width: 551px;
  }
}
.dl-btn:hover {
  opacity: 0.6 !important;
  transition: 0.4s !important;
}

.background01 {
  background: #2A2A2A;
  padding: 30px 0;
}
@media screen and (min-width: 1025px) {
  .background01 {
    padding: 60px 0;
  }
}

.background02 {
  position: relative;
}
.background02:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0059A3;
  position: absolute;
  display: block;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 60px 0 0 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.sec__inner--borderWrap--title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
@media screen and (min-width: 1025px) {
  .sec__inner--borderWrap--title {
    font-size: 2.8rem;
    min-height: 59px;
    padding-left: 22px;
  }
}
.sec__inner--borderWrap--title:before {
  content: "";
  height: 100%;
  width: 8px;
  background: #DCCCA4;
  background: #0059A3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
}

.sec__inner--borderWrap {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sec__inner--borderWrap p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .sec__inner--borderWrap p {
    font-size: 1.8rem;
  }
}
.sec__inner--borderWrap p + p {
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .sec__inner--borderWrap p + p {
    margin-top: 35px;
  }
}

.contentsPage .header .site__logo a {
  color: #fff;
}
.contentsPage .page__header {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .contentsPage .page__header {
    margin-top: 45px;
  }
}
.contentsPage .page__header__title {
  font-weight: bold;
  font-size: 2rem;
  color: #516772;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .contentsPage .page__header__title {
    font-size: 3.2rem;
  }
}
.contentsPage .page__header__date.eng {
  color: #68767D;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .contentsPage .page__header__date.eng {
    font-size: 2rem;
  }
}

.contents-page {
  padding-top: 0;
}
.contents-page .page_header {
  background: #CDE4F0;
  height: 240px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents-page .page_header {
    height: 320px;
  }
}
@media screen and (min-width: 1025px) {
  .contents-page .page_header {
    height: 440px;
  }
}
.contents-page .page_header:before {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_header_01.svg);
  left: -65px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .contents-page .page_header:before {
    width: 24vw;
    left: -65px;
    bottom: 20px;
  }
}
@media screen and (min-width: 1460px) {
  .contents-page .page_header:before {
    background-position: center;
    width: 22vw;
  }
}
.contents-page .page_header:after {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_header_02.svg);
  right: -65px;
  bottom: -60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .contents-page .page_header:after {
    width: 24vw;
    right: -65px;
    bottom: 0;
  }
}
@media screen and (min-width: 1460px) {
  .contents-page .page_header:after {
    background-position: center;
    width: 22vw;
  }
}
.contents-page .page_header .sec__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.contents-page .page_header .jpn {
  color: #0D5F88;
}
.contents-page .sec__inner {
  max-width: 1040px;
}
.contents-page .border__left {
  position: relative;
  padding-left: 19px;
}
.contents-page .border__left:before {
  content: "";
  height: 100%;
  width: 8px;
  background: #DCCCA4;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 8px;
}
.contents-page .flex {
  display: flex;
  flex-wrap: wrap;
}
.contents-page .block01 {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents-page .block01 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1260px) {
  .contents-page .block01 {
    padding-top: 160px;
  }
}
.contents-page .block01:before {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_l_01.svg);
  left: -65px;
  top: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  z-index: -1;
  transition: 0.4s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .contents-page .block01:before {
    width: 24vw;
    left: -65px;
    top: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .contents-page .block01:before {
    width: 24vw;
    left: -65px;
    background-position: center bottom;
    opacity: 0.4;
  }
}
@media screen and (min-width: 1460px) {
  .contents-page .block01:before {
    width: 22vw;
    opacity: 1;
  }
}
.contents-page .type-circle li {
  padding-left: 20px;
  position: relative;
}
.contents-page .type-circle li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.contents-page .background01.mt200 {
  margin-top: 100px;
}
@media screen and (min-width: 1025px) {
  .contents-page .background01.mt200 {
    margin-top: 200px;
  }
}
.contents-page .inner--tit.type01 {
  background: #E66146;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 57px;
}
@media screen and (min-width: 1025px) {
  .contents-page .inner--tit.type01 {
    max-width: 448px;
  }
}
.contents-page .inner--tit.type01:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  margin: 0 auto;
  border-top: 17px solid #E66146;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  display: block;
  width: 19px;
  height: 17px;
}
.contents-page .table {
  text-align: left;
  font-weight: bold;
  width: 100%;
  max-width: 874px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1025px) {
  .contents-page .table {
    padding-bottom: 20px;
    margin-top: 80px;
  }
}
.contents-page .table input {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 13.75px 18px;
}
.contents-page .table input::-moz-placeholder {
  color: #AEAEAE;
}
.contents-page .table input::placeholder {
  color: #AEAEAE;
}
.contents-page .table input[type=checkbox] {
  width: 26px;
  height: 26px;
  background: #F2F2F2;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  margin: 0 12px 0 0;
  padding: 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
  border-radius: 0;
}
.contents-page .table input[type=checkbox]:checked {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
}
.contents-page .table textarea {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 13.75px 18px;
}
.contents-page .table textarea::-moz-placeholder {
  color: #AEAEAE;
}
.contents-page .table textarea::placeholder {
  color: #AEAEAE;
}
.contents-page .table .mwform-checkbox-field-text {
  font-size: 1.8rem;
  font-weight: bold;
}
.contents-page .table .selectBox {
  background: #F2F2F2;
  border-radius: 10px;
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #AEAEAE;
}
.contents-page .table .selectBox:after {
  content: "";
  position: absolute;
  left: auto;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 9px solid #2D2D2D;
  border-right: 6.5px solid transparent;
  border-left: 6.5px solid transparent;
  display: block;
  width: 13px;
  height: 9px;
  z-index: 0;
}
.contents-page .table .selectBox select {
  color: #AEAEAE;
}
.contents-page .table option, .contents-page .table select {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 13.75px 18px;
  background: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 95px;
  position: relative;
  z-index: 1;
}
.contents-page .table option::-moz-placeholder, .contents-page .table select::-moz-placeholder {
  color: #AEAEAE;
}
.contents-page .table option::placeholder, .contents-page .table select::placeholder {
  color: #AEAEAE;
}
.contents-page .table label {
  width: 100%;
  display: flex;
  align-items: center;
}
.contents-page .table label + label {
  margin-top: 23px;
}
.contents-page .table th {
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .contents-page .table th {
    width: 194px;
  }
}
.contents-page .table th.must span {
  position: relative;
}
.contents-page .table th.must span:after {
  content: "＊";
  color: #FF6130;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 2px;
  right: -12px;
}
@media screen and (min-width: 1025px) {
  .contents-page .table th.align-top {
    vertical-align: top;
    padding-top: 26px;
  }
}
.contents-page .table td {
  padding-top: 10px;
  padding-bottom: 30px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .contents-page .table td {
    width: calc(100% - 194px);
  }
}
.contents-page .table .add-text {
  margin-top: 10px;
  display: block;
}
.contents-page .table input, .contents-page .table textarea {
  background: #F2F2F2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border: none;
}
.contents-page .table .error {
  display: block;
  color: #E83F42;
  font-size: 1.6rem;
  padding-top: 5px;
  display: none;
}
.contents-page .table .error ~ .error {
  display: block;
}
.contents-page .privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-top: 22px;
  font-weight: bold;
  position: relative;
}
.contents-page .privacy input {
  width: 26px;
  height: 26px;
  background: #F2F2F2;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  margin: 0 12px 0 0;
  padding: 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
}
.contents-page .privacy input:checked {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
}
.contents-page .privacy .blank-link {
  padding: 0;
  text-decoration: underline;
}
.contents-page .privacy .blank-link:after {
  display: none;
}
.contents-page .privacy label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 500;
}
.contents-page .privacy a {
  border-bottom: 1px solid;
}
.contents-page input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #DCCCA4;
  background: #DCCCA4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  height: 49px;
  width: 100%;
  max-width: 314px;
  margin: 60px auto 0;
  border-radius: 30px;
  transition: 0.4s;
  cursor: pointer;
}
.contents-page input[type=submit]:hover {
  opacity: 0.6;
}
.contents-page input[type=submit][value=修正する] {
  background: #D8D8D8;
  border-color: #D8D8D8;
  color: #2A2A2A;
  margin-top: 38px;
}
.contents-page input[type=submit][value=修正] {
  background: #D8D8D8;
  border-color: #D8D8D8;
  color: #2A2A2A;
  margin-top: 38px;
}
.contents-page tr, .contents-page tbody, .contents-page th, .contents-page td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .contents-page tr, .contents-page tbody, .contents-page th, .contents-page td {
    display: table-cell;
    width: auto;
  }
}
@media screen and (min-width: 1025px) {
  .contents-page tbody, .contents-page tr {
    display: table;
    width: 100%;
  }
}

@media screen and (min-width: 1260px) {
  .lower .fxedwrap {
    opacity: 1;
    top: 0;
    bottom: auto;
    max-width: 575px;
    border-radius: 0 0 0 20px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .fxedwrap__list li a {
    padding: 4.75px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .fxedwrap__list li a img {
    max-width: 160px;
    width: 90%;
  }
}
.lower .fxedwrap__list--item.type-document a .pc,
.lower .fxedwrap__list--item.type-inquiry a .pc {
  display: none;
}
.lower .fxedwrap__list--item.type-document a .sp,
.lower .fxedwrap__list--item.type-inquiry a .sp {
  display: block;
}
@media screen and (min-width: 1260px) {
  .lower .header .header__box {
    padding-top: 38px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .site__logo {
    position: relative;
    top: -19px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .header .header__inner {
    padding: 32.5px 38px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .header.onScroll .header__inner {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1260px) {
  .lower .onScroll .fxedwrap__list li a img {
    max-width: 130px;
    width: 90%;
  }
}

.sec__inner .mw_wp_form .error {
  color: #E83F42 !important;
  font-size: 1.6rem;
  width: 100%;
}

.contents-page .table .mwform-checkbox-field-text {
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .contents-page .table .mwform-checkbox-field-text {
    font-size: 1.8rem;
  }
}

.mw_wp_form.mw_wp_form_input input[value=送信],
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .privacy {
  display: none !important;
}

.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .selectBox {
  background: none;
}

.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .selectBox:after {
  display: none;
}

.privacy .mwform-checkbox-field-text {
  position: relative;
}

.privacy .mwform-checkbox-field-text::after {
  content: "＊";
  color: #FF6130;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 2px;
  right: -12px;
}

main {
  overflow-x: hidden;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.lower .sec__inner--read + .fxedwrap .fxedwrap__list li a img {
  width: 75% !important;
}

.lower .sec__inner--read + .fxedwrap .fxedwrap__list--item.type-document a .sp, .lower .fxedwrap__list--item.type-inquiry a .sp {
  display: none;
}

.lower .sec__inner--read + .fxedwrap .fxedwrap__list--item.type-document a .pc, .lower .fxedwrap__list--item.type-inquiry a .pc {
  display: block;
}

.header {
  width: 100%;
  z-index: 200;
  font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.4s;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
}
.header .header__inner {
  padding: 10px 0;
  height: 60px;
  position: relative;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header .header__inner {
    height: 70px;
  }
}
@media screen and (min-width: 1025px) {
  .header .header__inner {
    padding: 32.5px 38px 36.5px;
    max-width: 1440px;
    height: 78px;
    height: auto;
  }
  .header .header__inner::after {
    content: "";
    opacity: 0;
    transition: all 0.4s;
  }
}
.header .header__inner .header__nav-btn-sp {
  position: absolute;
  display: flex;
  width: 38%;
  min-width: 145px;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 354px) {
  .header .header__inner .header__nav-btn-sp {
    right: 56px;
  }
}
@media screen and (min-width: 1025px) {
  .header .header__inner .header__nav-btn-sp {
    display: none;
  }
}
@media (hover: hover) {
  .header a {
    transition: all 0.4s;
  }
  .header a:hover {
    opacity: 0.7;
  }
}
.header .site__logo {
  width: -moz-fit-content;
  width: fit-content;
}
.header .site__logo a {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: #68767D;
  letter-spacing: 0.01em;
  display: block;
}
@media screen and (min-width: 768px) {
  .header .site__logo a {
    font-size: 3.5rem;
  }
}
.header .site__logo a img {
  height: 40px;
}
@media screen and (min-width: 768px) {
  .header .site__logo a img {
    width: 218px;
    max-height: 100%;
    height: auto;
  }
}
.header > * {
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header:after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: #fff;
    z-index: 0;
    min-height: 100vh;
    top: -100vh;
    bottom: auto;
  }
}
.header__cont {
  width: 100%;
}
.header__cont-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__cont-box {
    width: calc(100% - 40px);
    top: -200vh;
    position: fixed;
    visibility: hidden;
  }
}
.header__nav {
  width: 100%;
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .header__nav-list {
    gap: 20px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1300px) {
  .header__nav-list {
    gap: 50px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid #b6b6b6;
    padding-bottom: 10px;
  }
}
.header__nav-list a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .header__nav-list a {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-list a[target=_blank] {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-list a[target=_blank]:after {
    position: relative;
    position: relative;
    display: inline-block;
    margin-left: 5px;
  }
}
.header__nav-list a:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  background: #333;
  bottom: 0;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .header__nav-list a:hover:before {
    content: "";
    width: 100%;
  }
}
.header .header__nav-search--wrap {
  background: #fff;
  font-size: 1.6rem;
  border-radius: 10px;
  border: 1px solid #A8B2B7;
  letter-spacing: 0.02em;
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header .header__nav-search--wrap {
    margin-top: 42px;
  }
}
.header .header__nav-search--wrap input[type=text] {
  width: 100%;
  padding: 8px 55px 8px 10px;
}
@media screen and (min-width: 768px) {
  .header .header__nav-search--wrap input[type=text] {
    padding: 12px 55px 12px 20px;
  }
}
.header .header__nav-search--wrap .serachBtn {
  width: 19px;
  height: 19px;
  background: url(/assets/img/common/icon_search.svg);
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.header .header__nav-search--wrap ::-moz-placeholder {
  color: #A8B2B7;
  font-size: 1.6rem;
}
.header .header__nav-search--wrap ::placeholder {
  color: #A8B2B7;
  font-size: 1.6rem;
}
.header .header__box {
  opacity: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0s;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header .header__box {
    opacity: 1;
    height: auto;
    visibility: visible;
    width: calc(100% - 240px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
}
.header.onScroll {
  background: rgba(255, 255, 255, 0.9);
}
.header.onScroll .header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.on {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.open .header {
  background-color: rgba(255, 255, 255, 0);
}
.open .header .site__logo a {
  color: #fff;
}
.open .header__trrigger-btn .off {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: none;
}
.open .header__trrigger-btn .on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  top: 15px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .open .header__trrigger-btn .on {
    top: 40px;
  }
}
.open .header::after {
  top: 0;
}
.open .header__cont-box {
  top: 60px;
  visibility: visible;
}
@media screen and (min-width: 1025px) {
  .open .header__cont-box {
    top: 0;
  }
}
.open .header__box {
  opacity: 1;
  overflow: scroll;
}
@media screen and (max-width: 1024px) {
  .open .header__box {
    visibility: visible;
    height: auto;
    height: 100%;
    min-height: 100vh;
    padding-bottom: 20px;
  }
}
.open .header__trrigger-btn {
  top: 0px;
  bottom: auto;
}

.header__trrigger-btn {
  position: absolute;
  top: -10px;
  right: 0px;
  width: 50px;
  height: 66px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__trrigger-btn {
    top: 0px;
  }
}
@media screen and (min-width: 1025px) {
  .header__trrigger-btn {
    display: none;
  }
}

.header__trrigger-btn span {
  position: absolute;
  left: 50%;
  width: 100%;
  width: 22px;
  height: 2px;
  background-color: #2a2a2a;
  transform: translateX(-50%);
}

.header__trrigger-btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.header__trrigger-btn span:nth-of-type(1) {
  top: 28px;
}

.header__trrigger-btn span:nth-of-type(2) {
  top: 36px;
}

.header__trrigger-btn span:nth-of-type(3) {
  bottom: 20px;
}

.header__trrigger-btn.active span:nth-of-type(1) {
  transform: translate(-7px, 0) rotate(-315deg);
}

.header__trrigger-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.header__trrigger-btn.active span:nth-of-type(3) {
  transform: translate(-7px, -16px) rotate(315deg);
}

.header__overlay {
  pointer-events: none;
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 125;
  opacity: 0;
  transition: all 0.2s;
}
.header__overlay.active {
  opacity: 0.8;
}

.fxedwrap {
  position: fixed;
  width: 100%;
  max-width: 807px;
  background: #E66146;
  border-radius: 15px 0 0 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: 0.4s;
}
@media screen and (min-width: 1260px) {
  .fxedwrap {
    border-radius: 30px 0 0 0;
  }
}
.fxedwrap__list {
  display: flex;
  justify-content: space-between;
}
.fxedwrap__list li {
  width: 33.3333333333%;
}
.fxedwrap__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 3px 9px;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .fxedwrap__list li a {
    padding: 21px 3px;
  }
}
.fxedwrap__list li a:hover {
  opacity: 0.5;
}
.fxedwrap__list li a img {
  width: 90%;
}
@media screen and (min-width: 1025px) {
  .fxedwrap__list li a img {
    max-width: 220px;
    width: 75%;
  }
}
.fxedwrap__list li.type-document {
  background: #E1563D;
}
.fxedwrap__list li.type-inquiry {
  background: #C74C33;
}
.fxedwrap.onScroll {
  opacity: 1;
}

.open .fxedwrap {
  z-index: -1;
}

main {
  position: relative;
}
main img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: auto;
}

.sec {
  margin-bottom: 0px;
}
@media screen and (min-width: 1025px) {
  .sec {
    margin-bottom: 0px;
  }
}
.sec__inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
.sec__inner--title {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.sec__inner--title .jpn {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4285;
}
@media screen and (min-width: 768px) {
  .sec__inner--title .jpn {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .sec__inner--title .jpn {
    font-size: 4.2rem;
  }
}
.sec__inner--title .eng {
  font-weight: 800;
  line-height: 2.5;
  line-height: 2;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .sec__inner--title .eng {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .sec__inner--title .eng {
    font-size: 2.4rem;
  }
}
.sec__inner--title .eng::first-letter {
  color: #E83F42;
}
.sec__inner--read {
  width: 100%;
  font-weight: 400;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: -0.018em;
  margin-top: 22px;
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .sec__inner--read {
    font-size: 2.4rem;
    padding-left: 110px;
  }
}

.backgorund-type01 .sec__inner {
  position: relative;
}
.backgorund-type01 .sec__inner:after {
  content: "";
  position: absolute;
  width: 22vw;
  height: 22vw;
  max-width: 315px;
  height: 337px;
  top: -40px;
  left: -250px;
}
@media screen and (min-width: 1025px) {
  .backgorund-type01 .sec__inner:after {
    background: url(/assets/img/common/bg_contents_l_01.svg);
  }
}

.backgorund-type02 .sec__inner:before {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_l_02.svg);
  left: -65px;
  top: 280px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type02 .sec__inner:before {
    width: 24vw;
    left: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type02 .sec__inner:before {
    left: -145px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type02 .sec__inner:before {
    background-position: center;
    width: 22vw;
  }
}
.backgorund-type02 .sec__inner:after {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_r_01.svg);
  right: -65px;
  bottom: 380px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type02 .sec__inner:after {
    width: 24vw;
    right: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type02 .sec__inner:after {
    right: -160px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type02 .sec__inner:after {
    background-position: center;
    width: 22vw;
  }
}

.backgorund-type03 .sec__inner {
  position: relative;
}
.backgorund-type03 .sec__inner:before {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_l_03.svg);
  left: -65px;
  top: 280px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type03 .sec__inner:before {
    width: 24vw;
    left: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type03 .sec__inner:before {
    left: -145px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type03 .sec__inner:before {
    background-position: center;
    width: 22vw;
  }
}
.backgorund-type03 .sec__inner:after {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_r_02.svg);
  right: -65px;
  bottom: 380px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type03 .sec__inner:after {
    width: 24vw;
    right: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type03 .sec__inner:after {
    right: -160px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type03 .sec__inner:after {
    background-position: center;
    width: 22vw;
  }
}

.backgorund-type04 .sec__inner:before {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_l_02.svg);
  left: -65px;
  top: 280px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type04 .sec__inner:before {
    width: 24vw;
    left: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type04 .sec__inner:before {
    left: -145px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type04 .sec__inner:before {
    background-position: center;
    width: 22vw;
  }
}
.backgorund-type04 .sec__inner:after {
  content: "";
  position: absolute;
  width: 28vw;
  max-width: 315px;
  height: 337px;
  background: url(/assets/img/common/bg_contents_r_01.svg);
  right: -65px;
  bottom: 210px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 0;
  transition: 0.4s;
  display: none;
}
@media screen and (min-width: 768px) {
  .backgorund-type04 .sec__inner:after {
    width: 24vw;
    right: -11vw;
    display: block;
  }
}
@media screen and (min-width: 1260px) {
  .backgorund-type04 .sec__inner:after {
    right: -160px;
  }
}
@media screen and (min-width: 1460px) {
  .backgorund-type04 .sec__inner:after {
    background-position: center;
    width: 22vw;
  }
}

.footer {
  background: #99D5E8;
  color: #fff;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .footer {
    padding-top: 55px;
    padding-bottom: 70px;
  }
}
.footer .sec__inner {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 13px;
}
.footer__top .footer__logo {
  width: 100%;
  align-items: center;
  display: flex;
  padding-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__logo {
    max-width: 245px;
    padding-bottom: 0px;
  }
}
.footer__top .footer__logo img {
  width: 100%;
  max-width: 245px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__logo img {
    max-width: 245px;
    margin: 0;
  }
}
.footer__top .footer__top__list {
  width: 100%;
  flex-wrap: wrap;
  display: none;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__top__list {
    display: flex;
    max-width: calc(100% - 245px);
    padding-left: 93px;
  }
}
.footer__top .footer__top__list li:nth-of-type(odd) {
  width: 48.5%;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__top__list li:nth-of-type(odd) {
    width: 32%;
  }
}
.footer__top .footer__top__list li:nth-of-type(even) {
  width: 48.5%;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__top__list li:nth-of-type(even) {
    width: 65%;
  }
}
.footer__top .footer__top__list li a {
  font-size: 1.4rem;
  line-height: 3;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .footer__top .footer__top__list li a {
    font-size: 2rem;
  }
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 100px;
}
@media screen and (min-width: 1025px) {
  .footer__bottom {
    padding: 41px 0 50px;
  }
}
.footer__bottom .footer__copy {
  font-size: 1rem;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .footer__bottom .footer__copy {
    font-size: 1.4rem;
    width: 50%;
  }
}
.footer__bottom .footer__bottom__list {
  width: 50%;
  display: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (min-width: 1025px) {
  .footer__bottom .footer__bottom__list {
    display: flex;
  }
}
.footer__bottom .footer__bottom__list li {
  padding-right: 16px;
}
@media screen and (min-width: 1260px) {
  .footer__bottom .footer__bottom__list li {
    padding-right: 32px;
    width: 50%;
  }
}
.footer__bottom .footer__bottom__list li a {
  font-size: 1.6rem;
  color: #fff;
  padding-left: 0 !important;
  font-weight: 500;
}
.footer .blank-link {
  position: relative;
  padding-right: 20px;
}
.footer .blank-link:after {
  content: "";
  width: 19px;
  height: 19px;
  background: url(/assets/img/common/icon_other-site.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 0;
  margin: 0;
}

.footer__copy {
  width: 100%;
}
.footer__copy small {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__copy small {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer__copy small {
    text-align: left;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1260px) {
  .footer__copy small {
    padding-top: 6px;
    padding-left: 2px;
    letter-spacing: 0.021em;
  }
}

a {
  transition: all 0.4s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=style.css.map */