@charset "UTF-8";
body, div, dl, dt, dd, ul, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

fieldset, img {
  border: 0;
}

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

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body {
  text-align: justify;
  line-height: 1.8;
}

p, th, td {
  text-align: justify;
  line-height: 1.8;
}

body, h3, h4, p {
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  color: #000000;
}

h1, h2 {
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  color: #171C60;
}

.bold {
  font-weight: bold;
}

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

.ta-left {
  text-align: left;
}

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

.sp-375, .sp-480, .sp, .sp-960, .sp-1024 {
  display: none;
}

.none {
  display: none !important;
}

@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* header **************************/
.top-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  box-sizing: content-box;
  position: fixed;
  top: 0;
  z-index: 9998;
}

/* header-menu__bnr **************************/
.header-menu__bnr ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1px;
}
.header-menu__bnr li {
  font-size: 1rem;
  font-weight: 600;
}
.header-menu__bnr li a:hover {
  text-decoration: none;
}
.header-menu__bnr--comlist a, .header-menu__bnr--howto a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 60px;
  width: 270px;
  background: #171C60;
  color: #FFFFFF;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  position: relative;
}
.header-menu__bnr--comlist a:hover, .header-menu__bnr--howto a:hover {
  background: #0099D9;
}
.header-menu__bnr--comlist a::before, .header-menu__bnr--howto a::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 27px;
  left: 20px;
}
.header-menu__bnr--comlist a::after, .header-menu__bnr--howto a::after {
  content: "";
  position: absolute;
  background: url(../images/arrow_w.svg) no-repeat;
  background-size: 100%;
  width: 12px;
  height: 17.5px;
  right: 20px;
  transition: all 0.3s;
}
.header-menu__bnr--comlist a:hover::after, .header-menu__bnr--howto a:hover::after {
  right: 15px;
}
.header-menu__bnr--comlist a::before {
  background: url(../images/icon_comlist.svg) left top no-repeat;
  background-size: 100%;
}
.header-menu__bnr--howto a::before {
  background: url(../images/icon_howto.svg) left top no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1280px) {
  .header-menu__bnr {
    font-size: 0.9375rem;
  }
  .header-menu__bnr--comlist a, .header-menu__bnr--howto a {
    width: 220px;
  }
  .header-menu__bnr--comlist a::before, .header-menu__bnr--howto a::before {
    width: 20px;
    height: 23.48px;
    left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header-menu__bnr--comlist a, .header-menu__bnr--howto a {
    font-size: 0.875rem;
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 960px) {
  .header-menu__bnr--comlist a, .header-menu__bnr--howto a {
    width: 180px;
    height: 45px;
  }
  .header-menu__bnr--comlist a::before, .header-menu__bnr--howto a::before {
    width: 15px;
    height: 17.61px;
    left: 15px;
  }
}
@media screen and (max-width: 480px) {
  .header-menu__bnr {
    width: 100%;
    font-size: 0.75rem;
  }
  .header-menu__bnr li {
    width: 100%;
  }
  .header-menu__bnr--comlist a, .header-menu__bnr--howto a {
    width: 100%;
    height: 40px;
  }
  .header-menu__bnr--comlist a::before, .header-menu__bnr--howto a::before {
    width: 10px;
    height: 11.74px;
    left: 10px;
  }
  .header-menu__bnr--comlist a::after, .header-menu__bnr--howto a::after {
    width: 7.5px;
    height: 11px;
    right: 10px;
    transition: all 0.3s;
  }
  .header-menu__bnr--comlist a:hover::after, .header-menu__bnr--howto a:hover::after {
    right: 10px;
  }
}

/* header **************************/
.header {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 1076px;
  background-size: 100%;
}
.header .main_visual {
  width: 100%;
  height: 100%;
}
.header .main_visual img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .header {
    margin-top: 40px;
  }
}

.close {
  border: 3px solid #171C60;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  margin: 5rem auto 0;
  box-sizing: border-box;
}
.close p {
  text-align: center;
  color: #171C60;
  font-size: 1.5625rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .close p {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .close {
    margin: 3rem auto 0;
  }
  .close p {
    font-size: 1.125rem;
  }
}

h2,
h3 {
  text-align: center;
}

h2 {
  font-size: 1.875rem;
}

p {
  font-size: 1rem;
}

@media screen and (max-width: 960px) {
  h2 {
    font-size: 1.5625rem;
  }
  p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.125rem;
  }
  p {
    font-size: 0.875rem;
  }
}
.bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  position: relative;
  border-radius: 20px;
  color: #FFFFFF;
  background: #171C60;
  border: 1px solid #171C60;
  font-size: 1.25rem;
}
.bnr::after {
  content: "";
  position: absolute;
  right: 20px;
  transition: all 0.3s;
  background: url(../images/arrow_w.svg) no-repeat;
  background-size: 100%;
  width: 10.5px;
  height: 15px;
}
.bnr:hover {
  text-decoration: none;
  color: #171C60;
  background: #FFFFFF;
}
.bnr:hover::after {
  background: url(../images/arrow_n.svg) no-repeat;
  background-size: 100%;
  right: 15px;
}

@media screen and (max-width: 960px) {
  .bnr {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .bnr {
    border-radius: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .bnr {
    font-size: 0.875rem;
  }
}
.slide-arrow {
  position: absolute;
  display: block;
  height: 22px;
  width: 22px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.prev-arrow {
  left: 0;
  z-index: 10;
}

.next-arrow {
  right: 0;
}

.slick-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: -60px !important;
}
.slick-dots li {
  width: 35px !important;
  height: 35px !important;
  border: 1px solid #000000;
}
.slick-dots li button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  color: #000000;
  padding: 0;
  display: block;
}

@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 80px !important;
  }
}
.contact__form-table {
  margin-bottom: 50px;
  width: 100%;
  border-top: solid 1px #000;
}
.contact__form-table th {
  width: 30%;
  border-bottom: solid 1px #000;
  font-weight: bold;
  padding: 1em 60px 1em 0;
  position: relative;
}
.contact__form-table th.textarea {
  vertical-align: top;
}
.contact__form-table th.textarea .hissu {
  top: 1em;
  transform: translateY(50%);
}
.contact__form-table th.contact__doui {
  text-align: center;
  width: 100%;
  padding: 1em 0;
}
.contact__form-table th.contact__doui .hissu {
  position: relative;
  right: 0;
  margin-left: 1em;
}
.contact__form-table th.contact__doui a {
  color: #000;
  text-decoration: underline;
}
.contact__form-table th .hissu {
  color: #000000;
  font-size: 0.875rem;
  font-weight: normal;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.contact__form-table td {
  width: 70%;
  border-bottom: solid 1px #000;
  padding: 1em 0 1em 1em;
}
.contact__form-table td span {
  font-size: 0.875rem;
  padding-left: 1em;
  color: #666;
}
.contact__form-table td.contact__radio {
  padding: 1em;
}
.contact__form-table label {
  margin-right: 20px;
}
.contact__form-table select,
.contact__form-table option {
  padding: 0.35em 0.5em;
  font-size: 1.125rem;
  border: solid 1px #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
}
.contact__form-table input[type=text], .contact__form-table input[type=tel], .contact__form-table input[type=number], .contact__form-table input[type=date], .contact__form-table input[type=email] {
  padding: 0.5em 0.5em;
  font-size: 1.125rem;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
}
.contact__form-table input[type=text] {
  width: 100%;
}
.contact__form-table input[type=text].name {
  width: 150px;
}
.contact__form-table input[type=text].name + .name {
  margin-left: 2%;
}
.contact__form-table input[type=email] {
  width: 100%;
}
.contact__form-table input[type=tel] {
  width: 180px;
}
.contact__form-table input[type=number], .contact__form-table input.zip, .contact__form-table input.tel {
  width: 90px;
}
.contact__form-table input[type=radio] {
  transform: scale(1.4);
  margin-right: 0.5em;
}
.contact__form-table input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 0.5em;
}
.contact__form-table textarea {
  padding: 0.5em;
  font-size: 1.125rem;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

input[type=submit] {
  text-align: center;
  border: 0;
}

.mw_wp_form_input .confirm-show {
  display: none;
}

.mw_wp_form_confirm .input-show {
  display: none;
}
.mw_wp_form_confirm .hissu {
  display: none;
}

.mw_wp_form_complete .input-show,
.mw_wp_form_complete .confirm-show {
  display: none;
}
.mw_wp_form_complete .compmes {
  padding: 2em 5%;
  font-weight: bold;
  width: 100%;
  max-width: 720px;
  margin: 30px auto;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .contact__form-table {
    margin-bottom: 25px;
  }
  .contact__form-table p {
    font-size: 1rem;
  }
  .contact__form-table th {
    font-size: 1rem;
  }
  .contact__form-table td {
    font-size: 1rem;
  }
  .contact__form-table td span {
    display: inline-block;
    padding-left: 3px;
  }
  .contact__form-table select {
    font-size: 1rem;
  }
  .contact__form-table option {
    font-size: 0.875rem;
  }
  .contact__form-table input[type=text], .contact__form-table input[type=tel], .contact__form-table input[type=date], .contact__form-table input[type=email] {
    font-size: 1rem;
  }
  .contact__form-table textarea {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .contact__form-table {
    margin-bottom: 20px;
  }
  .contact__form-table th,
  .contact__form-table td {
    display: block;
    width: 100%;
  }
  .contact__form-table th {
    padding: 0.75em 0.25em 0;
    border-bottom: none;
    font-size: 0.875rem;
  }
  .contact__form-table th.textarea .hissu {
    top: 0.75em;
  }
  .contact__form-table th .hissu {
    top: 60%;
    font-size: 0.8125rem;
  }
  .contact__form-table td {
    font-size: 1rem;
    padding: 0.25em 0.25em 0.75em;
  }
  .contact__form-table td .horizontal-item {
    display: block;
    margin: 0;
  }
  .contact__form-table br {
    display: none;
  }
  .contact__form-table select {
    font-size: 0.875rem;
    padding: 0.35em 0.25em;
  }
  .contact__form-table input[type=text], .contact__form-table input[type=tel], .contact__form-table input[type=date], .contact__form-table input[type=email] {
    font-size: 1rem;
  }
  .contact__form-table input.zip, .contact__form-table input.tel {
    width: 70px;
  }
  .contact__form-table input[type=text].name {
    width: 48%;
  }
  .contact__form-table textarea {
    font-size: 1rem;
  }
}
#page_top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  right: 5%;
  z-index: 9997;
  background: #FEF100;
}
#page_top img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
#page_top p {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #0099D9;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  #page_top {
    width: 50px;
    height: 50px;
  }
}

/* footer common **************************/
footer {
  background: #E5F5FB;
  position: relative;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: inherit;
  gap: 50px;
  margin: 0 auto;
  padding: 9rem 0;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
}
footer .liner_bottom {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 960px) {
  footer .wrap {
    display: block;
    padding: 5rem 0;
  }
}

/* footer-company */
.footer-company h2 {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #171C60;
  font-size: 1.5625rem;
  text-align: left;
}
.footer-company p {
  font-weight: 600;
  color: #171C60;
  padding-bottom: 5px;
  line-height: 1.5;
}
.footer-company a {
  font-size: 2.1875rem;
  color: #171C60;
}
.footer-company a:hover {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .footer-company {
    margin-bottom: 30px;
  }
  .footer-company h2 {
    font-size: 1.25rem;
  }
  .footer-company a {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-company {
    margin-bottom: 30px;
  }
  .footer-company h2 {
    font-size: 1.125rem;
  }
  .footer-company a {
    font-size: 1.4375rem;
  }
}

/* footer-contact */
.footer-contact .bnr {
  color: #171C60;
  background: #FFFFFF;
  width: 443px;
  height: 87px;
  font-size: 1.0625rem;
}
.footer-contact .bnr::before {
  content: "";
  position: absolute;
  background: url(../images/icon_mail_w.svg) no-repeat;
  background-size: 100%;
  width: 26px;
  height: 26px;
  left: 40px;
}
.footer-contact .bnr::after {
  background: url(../images/arrow_n.svg) no-repeat;
  background-size: 100%;
  width: 10.5px;
  height: 15px;
}
.footer-contact .bnr:hover {
  color: #FFFFFF;
  background: #171C60;
}
.footer-contact .bnr:hover::after {
  background: url(../images/arrow_w.svg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 960px) {
  .footer-contact .bnr {
    max-width: 443px;
    width: 90%;
    height: 70px;
    margin: 0 auto;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .footer-contact .bnr {
    width: 100%;
    font-size: 0.875rem;
  }
  .footer-contact .bnr::before {
    width: 20px;
    height: 20px;
    left: 15px;
  }
  .footer-contact .bnr::after {
    right: 15px;
  }
}

.copyright {
  margin: 0 auto;
  font-size: 0.875rem;
  color: #171C60;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .copyright {
    margin: 30px auto 0;
    text-align: center;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* entry **************************/
.entry {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 100px auto 0;
}
.entry .bnr {
  max-width: 500px;
  width: 80%;
  height: 87px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .entry {
    margin-top: 70px;
  }
  .entry .bnr {
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .entry {
    margin-top: 40px;
  }
}

/* common **************************/
main {
  margin-bottom: 12rem;
}

.cont-title {
  border-top: 2px solid #171C60;
  border-bottom: 2px solid #171C60;
  max-width: 354px;
  margin: 0 auto 6.25rem;
}

section {
  width: 100%;
}
section .wrap {
  width: 90%;
  max-width: 1200px;
  padding: 9rem 0;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  main {
    margin-bottom: 9rem;
  }
  .cont-title {
    margin-bottom: 5rem;
  }
  section .wrap {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 768px) {
  main {
    margin-bottom: 5rem;
  }
  .cont-title {
    margin-bottom: 2.5rem;
  }
  section .wrap {
    padding: 4rem 0;
  }
}
/* overview **************************/
.overview {
  text-align: center;
}
.overview img {
  max-width: 628px;
  width: 60%;
}
.overview h2 {
  margin: 40px auto 50px;
}
.overview p.lead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}
.overview dl.subject {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #000000;
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0;
  padding: 30px 56px 0;
  box-sizing: border-box;
}
.overview dl.subject dt, .overview dl.subject dd {
  font-weight: bold;
}
.overview dl.subject dt {
  background: #0099D9;
  border-radius: 5px;
  width: 130px;
  padding: 10px;
  color: #FFFFFF;
  font-size: 1.25rem;
}
.overview dl.subject dd {
  width: auto;
  padding-left: 30px;
  font-size: 1.125rem;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .overview img {
    width: 75%;
  }
  .overview h2 {
    margin: 30px auto 40px;
  }
  .overview p.lead {
    font-size: 1.0625rem;
  }
  .overview dl.subject {
    margin-top: 40px;
    padding: 20px 40px 0;
  }
  .overview dl.subject dt {
    width: 110px;
    font-size: 1.1875rem;
  }
  .overview dl.subject dd {
    width: calc(100% - 110px);
    padding-left: 20px;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .overview img {
    width: 90%;
  }
  .overview h2 {
    margin: 20px auto 30px;
  }
  .overview p.lead {
    font-size: 0.875rem;
  }
  .overview dl.subject {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    padding: 30px 20px 0;
  }
  .overview dl.subject dt {
    width: 110px;
    font-size: 1rem;
    padding: 5px 0;
  }
  .overview dl.subject dd {
    width: 100%;
    padding-left: 0;
    font-size: 0.875rem;
  }
}

/* schedule **************************/
.schedule {
  background: #E5F5FB;
}
.schedule__overview {
  max-width: 750px;
  margin: 0 auto;
}
.schedule__overview p {
  margin-top: 15px;
  font-weight: bold;
  color: #171C60;
  text-align: center;
}
.schedule__timetable {
  background: #FFFFFF;
  padding: 60px;
  width: 700px;
  margin: 50px auto 0;
  box-sizing: border-box;
}
.schedule__timetable table {
  font-weight: 600;
  width: 100%;
}
.schedule__timetable table tr:nth-child(odd) {
  background: #E5F5FB;
}
.schedule__timetable table th, .schedule__timetable table td {
  word-break: break-word;
}
.schedule__timetable table th {
  background: #0099D9;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
}
.schedule__timetable table td {
  text-align: center;
  padding: 10px 30px;
}
.schedule__timetable p.att {
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .schedule__timtable {
    padding: 40px;
  }
  .schedule__timtable table td {
    padding: 10px;
  }
}
@media screen and (max-width: 960px) {
  .schedule__timetable {
    width: 100%;
    max-width: 100%;
    padding: 50px;
  }
  .schedule__timetable table td, .schedule__timetable p.att {
    font-size: 0.9375rem;
  }
  .schedule__timetable p.att {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .schedule__timetable {
    padding: 30px;
  }
  .schedule__timetable table td, .schedule__timetable p.att {
    font-size: 0.875rem;
    line-height: 1.4rem;
  }
  .schedule__timetable p.att {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .schedule__timetable {
    padding: 15px;
  }
}

/* comlist **************************/
.comlist__preparation {
  max-width: 495px;
  width: 70%;
  margin: 0 auto;
}

.comlist__list .box {
  border-top: 2px solid #E5F5FB;
  padding: 0;
}
.comlist__list .box:last-child {
  border-bottom: 2px solid #E5F5FB;
}
.comlist__list .comlist-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 25px;
  cursor: pointer;
}
.comlist__list .comlist-title p {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: bold;
}
.comlist__list .comlist-title p span {
  padding-left: 5px;
  font-size: 1rem;
  font-weight: normal;
}
.comlist__list .comlist-title .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.comlist__list .comlist-title .btn p {
  font-size: 1rem;
  color: #0099D9;
}
.comlist__list .comlist-title .btn .icon {
  display: block;
  width: 20px;
  height: 20px;
  transition: transform 0.5s;
}
.comlist__list .comlist-title.open .btn .icon {
  transform: rotate(180deg);
}
.comlist__list .comlist-contents {
  padding: 10px 60px 60px 60px;
  display: none;
}
.comlist__list .comlist-contents table {
  width: 100%;
  border: 1px solid #000000;
}
.comlist__list .comlist-contents table th, .comlist__list .comlist-contents table td {
  padding: 18px 20px;
  border-bottom: 1px solid #000000;
  line-height: 1.7rem;
}
.comlist__list .comlist-contents table th {
  border-right: 1px solid #000000;
  background: #EBEDED;
  width: 250px;
  font-weight: bold;
}
.comlist__list .comlist-contents table td a {
  text-decoration: underline;
  color: #0099D9;
}
.comlist__list .comlist-contents table td a:hover {
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .comlist__list .comlist-title {
    padding: 15px 20px;
  }
  .comlist__list .comlist-title p {
    font-size: 1.0625rem;
  }
  .comlist__list .comlist-title p span {
    font-size: 0.875rem;
  }
  .comlist__list .comlist-title .btn p {
    font-size: 0.875rem;
  }
  .comlist__list .comlist-title .btn .icon {
    width: 18px;
    height: 18px;
  }
  .comlist__list .comlist-contents {
    padding: 10px 40px 40px 40px;
  }
  .comlist__list .comlist-contents table th, .comlist__list .comlist-contents table td {
    padding: 12px 15px;
    font-size: 0.9375rem;
  }
  .comlist__list .comlist-contents table th {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .comlist__list .comlist-title {
    padding: 10px 5px;
  }
  .comlist__list .comlist-title p {
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding-right: 10px;
  }
  .comlist__list .comlist-title p span {
    font-size: 0.75rem;
  }
  .comlist__list .comlist-title .btn p {
    font-size: 0.75rem;
  }
  .comlist__list .comlist-title .btn .icon {
    width: 15px;
    height: 15px;
  }
  .comlist__list .comlist-contents {
    padding: 10px 10px 20px 10px;
  }
  .comlist__list .comlist-contents table {
    border: none;
  }
  .comlist__list .comlist-contents table tr {
    border: 1px solid #000000;
    display: block;
    margin-bottom: 10px;
  }
  .comlist__list .comlist-contents table th, .comlist__list .comlist-contents table td {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .comlist__list .comlist-contents table th {
    border-right: none;
    padding: 5px 10px;
  }
  .comlist__list .comlist-contents table td {
    border-bottom: none;
    padding: 10px;
  }
}

/***************************************
準備中
****************************************/
.preparation {
  border-top: 1px dotted #676868;
  max-width: 900px;
  width: 80%;
  margin: 150px auto 0;
}
.preparation h2, .preparation p {
  text-align: center;
}
.preparation h2 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .preparation {
    margin-top: 30px;
  }
  .preparation h2 {
    margin-top: 30px;
  }
}/*# sourceMappingURL=common_style.css.map */