/*-------------------
add
--------------------*/
.l-header {
  top:0;
  left:0;
}

.l-header {
display: flex;
align-items: center;
padding: 0 40px;
position: fixed;
width: 100%;
background-color: #fff;
z-index: 5;
}

@media (max-width: 1200px) {
.l-header {
  padding: 0 20px;
}
}

@media (max-width: 1080px) {
.l-header {
  display: block;
  padding: 0;
}
}

@media (max-width: 1080px) {
.l-header__topWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
}

.l-header__menu {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
}

@media (max-width: 1080px) {
.l-header__menu {
  display: none;
  position: fixed;
  left: 100%;
  width: 100%;
  height: calc(100vh - 42px);
  z-index: 1;
  overflow-y: scroll;
  background-color: #0097E0;
}
}

@media (max-width: 1080px) {
.l-header__menu.is-active {
  display: block;
  animation-name: menu_open;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
}

.l-header__menu.is-no-active {
animation-name: menu_close;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

@keyframes menu_open {
0% {
  left: 100%;
}
100% {
  left: 0;
}
}

@keyframes menu_close {
0% {
  left: 0;
}
100% {
  left: 100%;
}
}

.l-menuBtn {
display: none;
position: relative;
width: 23px;
height: 15px;
}

@media (max-width: 1080px) {
.l-menuBtn {
  display: block;
}
}

.l-menuBtn__line {
width: 14px;
height: 1px;
background-color: #3A3A3A;
display: block;
position: absolute;
top: 0;
right: 0;
}

.l-menuBtn__line:nth-child(2) {
width: 18px;
top: 8px;
}

.l-menuBtn__line:nth-child(3) {
width: 22px;
top: 16px;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(1) {
animation-name: btn_line_1;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(2) {
animation-name: btn_line_2;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

.l-menuBtn.is-active .l-menuBtn__line:nth-child(3) {
animation-name: btn_line_3;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(1) {
animation-name: btn_line_1_close;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(2) {
animation-name: btn_line_2_close;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

.l-menuBtn.is-no-active .l-menuBtn__line:nth-child(3) {
animation-name: btn_line_3_close;
animation-duration: 0.5s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: alternate;
animation-fill-mode: forwards;
animation-play-state: running;
}

@keyframes btn_line_1 {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(45deg);
  top: 8px;
  width: 22px;
}
}

@keyframes btn_line_2 {
0% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}

@keyframes btn_line_3 {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(-45deg);
  top: 8px;
}
}

@keyframes btn_line_1_close {
0% {
  transform: rotate(45deg);
  top: 8px;
}
100% {
  transform: rotate(0deg);
  top: 0px;
}
}

@keyframes btn_line_2_close {
0% {
  opacity: 0;
}
100% {
  opacity: 1;
}
}

@keyframes btn_line_3_close {
0% {
  transform: rotate(-45deg);
  top: 8px;
}
100% {
  transform: rotate(0deg);
  top: 16px;
}
}

.l-header__logo {
width: 240px;
display: block;
transition: all 0.3s;
}

.l-header__logo:hover {
opacity: 0.7;
}

@media (max-width: 1080px) {
.l-header__logo {
  width: 200px;
}
}

@media (max-width: 1023px) {
.l-header__logo {
  width: 140px;
}
}

.l-nav {
margin-left: 44px;
}

@media (max-width: 1080px) {
.l-nav {
  margin: 0;
  background-color: #fff;
  width: 100%;
}
}

.l-nav__list {
display: flex;
}

@media (max-width: 1080px) {
.l-nav__list {
  display: block;
}
}

.l-nav__link {
display: block;
font-size: 18px;
transition: all 0.3s;
padding: 40px 20px;
min-width: 100px;
}

@media (max-width: 1200px) {
.l-nav__link {
  font-size: 16px;
  padding: 40px 10px;
}
}

@media (max-width: 1080px) {
.l-nav__link {
  font-size: 16px;
}
}

.l-nav__link.is-active {
color: #0097E0;
}

.l-nav__link:hover {
color: #0097E0;
}

@media (max-width: 1080px) {
.l-nav__link {
  display: block;
  width: 100%;
  padding: 16px 0px;
  font-size: 16px;
}
}

.l-nav__link.arrow::before {
content: none;
}

@media (max-width: 1080px) {
.l-nav__link.arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #0097E0;
  top: 0;
  bottom: 0;
  right: 24px;
  left: auto;
  margin: auto auto;
}
}

.l-nav__link.arrow::after {
content: none;
}

@media (max-width: 1080px) {
.l-nav__link.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  left: auto;
  margin: auto auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0097E0;
  border-right: 2px solid #0097E0;
  transform: rotate(45deg);
}
}

.l-nav__accordion {
position: absolute;
top: 45px;
left: auto;
right: 6px;
margin: auto auto;
width: 20px;
height: 20px;
display: block;
z-index: 1;
}

@media (max-width: 1080px) {
.l-nav__accordion {
  top: 0px;
  margin: auto auto;
  right: 0px;
  width: 50px;
  height: 50px;
}
}

.l-nav__accordion::before {
content: none;
}

@media (max-width: 1080px) {
.l-nav__accordion::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #0097E0;
  top: 0;
  bottom: 0;
  right: 6px;
  left: 0;
  margin: auto auto;
  transform: none;
}
}

.l-nav__accordion::after {
content: none;
}

@media (max-width: 1080px) {
.l-nav__accordion::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #0097E0;
  top: 0;
  bottom: 0;
  right: 6px;
  left: 0;
  margin: auto auto;
  transform: none;
}
}

@media (max-width: 1080px) {
.l-nav__accordion.is-open::after {
  content: none;
}
}

@media (max-width: 1080px) {
.btn_language__wrap {
  background-color: #0097E0;
  padding: 20px 0 130px 0;
  width: 100%;
}
}

.btn_language {
display: flex;
align-items: center;
}

@media (max-width: 1080px) {
.btn_language {
  width: 180px;
  margin: auto;
  background-color: #fff;
  border-radius: 40px;
  padding: 4px 0;
  justify-content: center;
}
}

.btn_language .btn_languageItem:nth-child(2) {
position: relative;
}

.btn_language .btn_languageItem:nth-child(2)::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: auto;
left: 0px;
margin: auto auto;
width: 1px;
height: 9px;
display: block;
background-color: #B2B2B2;
}

.btn_language .btn_languageItem:nth-child(2)::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: auto;
margin: auto auto;
width: 1px;
height: 9px;
display: block;
background-color: #B2B2B2;
}
.btn_language .btn_languageItem:last-child::after {
  content:none;
}

.btn_language .btn_languageBtn {
font-family: 'Lato', sans-serif;
font-size: 13px;
color: #B2B2B2;
width: 34px;
padding: 10px 0;
border-radius: 100%;
margin: 0 13px;
cursor: pointer;
transition: all 0.3s;
display: block;
text-align: center;
}

@media (max-width: 1080px) {
.btn_language .btn_languageBtn {
  margin: 0 10px;
}
}

.btn_language .btn_languageBtn.is-active {
background-color: #0097E0;
color: #fff;
}

.btn_language .btn_languageBtn:hover {
background-color: #0097E0;
color: #fff;
}

.l-nav-list--nest {
opacity: 0;
pointer-events: none;
position: absolute;
transition: all 0.3s;
padding: 25px 20px;
background-color: #fff;
box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
top: 75px;
left: -5px;
display: block;
width: 230px;
}

@media (max-width: 1080px) {
.l-nav-list--nest {
  opacity: 1;
  position: static;
  width: 100%;
  box-shadow: none;
  display: none;
  pointer-events: all;
  top: 0;
  transition: none;
  padding: 0 0 12px 0;
}
}

.l-nav-list--nest__item+.l-nav-list--nest__item {
margin-top: 20px;
}

@media (max-width: 1080px) {
.l-nav-list--nest__item+.l-nav-list--nest__item {
  margin-top: 10px;
}
}

.l-nav-list--nest__item .l-nav-list--nest__link {
padding-left: 16px;
position: relative;
transition: all 0.3s;
display: block;
}

@media (max-width: 1080px) {
.l-nav-list--nest__item .l-nav-list--nest__link {
  padding: 0px 0 0px 52px;
  font-size: 14px;
}
}

.l-nav-list--nest__item .l-nav-list--nest__link::before {
content: "";
position: absolute;
height: 1px;
width: 5px;
top: 0;
bottom: 0;
right: auto;
left: 0;
margin: auto auto;
display: block;
background-color: #3A3A3A;
}

@media (max-width: 1080px) {
.l-nav-list--nest__item .l-nav-list--nest__link::before {
  left: 40px;
}
}

.l-nav-list--nest__item .l-nav-list--nest__link:hover {
color: #0097E0;
}

.l-nav-list--nest__item .l-nav-list--nest__link:hover::before {
background-color: #0097E0;
}

.l-nav__item {
position: relative;
}

@media (max-width: 1080px) {
.l-nav__item {
  border-top: #E6E6E6 1px solid;
}
}

@media (max-width: 1080px) {
.l-nav__item a {
  padding: 16px 20px;
}
}

.l-nav__item:hover .l-nav-list--nest {
opacity: 1;
pointer-events: all;
z-index: 1;
}

.crf-menu {
position: fixed;
top: 0;
z-index: 3;
width: 100%;
}

.crf-menu .crf-menu__inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 40px;
background: #fff;
}

.l-contact {
padding: 64px 0 74px 0;
background-image: url("../img/l-contact__pc.jpg");
background-size: cover;
background-repeat: no-repeat;
margin-top: 80px;
}

@media (max-width: 1023px) {
.l-contact {
  background-image: url("../img/l-contact__sp.jpg");
  padding: 28px;
  margin-top: 40px;
}
}

.l-contact .l-contact__logo {
width: 80px;
margin: auto;
}

@media (max-width: 1023px) {
.l-contact .l-contact__logo {
  width: 60px;
}
}

.l-contact .l-contact__tel {
color: #fff;
font-size: 30px;
font-weight: bold;
text-align: center;
margin-top: 20px;
}

@media (max-width: 1023px) {
.l-contact .l-contact__tel {
  margin-top: 4px;
}
}

.l-contact .l-contact__tel a {
cursor: pointer;
letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
.l-contact .l-contact__tel a {
  font-size: 20px;
}
}

.l-contact .l-contact__date {
color: #fff;
text-align: center;
font-size: 16px;
margin-top: 14px;
letter-spacing: 0.06em;
}

@media (max-width: 1023px) {
.l-contact .l-contact__date {
  font-size: 12px;
  margin-top: 10px;
}
}

.l-contact .l-contact__btn {
width: 360px;
display: block;
font-size: 18px;
color: #fff;
padding: 23px 0;
text-align: center;
margin: auto;
margin-top: 38px;
transition: all 0.3s;
letter-spacing: 0.06em;
background: linear-gradient(135deg, #4ED1FC 0%, #1345DA 100%);
}

.l-contact .l-contact__btn:hover {
opacity: 0.7;
}

@media (max-width: 1023px) {
.l-contact .l-contact__btn {
  width: 100%;
  font-size: 16px;
  padding: 20px 0;
  max-width: 360px;
  margin-top: 20px;
}
}

.contents-with_thumbnail-l .ttl,
.contents-with_thumbnail-r .ttl {
  transform: translateY(-1em);
}

@media (max-width: 1024px) {
  .contents-with_thumbnail-l .ttl,
  .contents-with_thumbnail-r .ttl {
      transform: translateY(0);
  }
  
  .contents-with_thumbnail-r .decoration .decoration__inner,
  .contents-with_thumbnail-l .decoration .decoration__inner {
      height: 100%;
  }
}

.l-contact {
padding: 64px 0 74px 0;
background-image: url("https://d2jgqj0z273i9k.cloudfront.net/1a907de221b962f76d152a87eefc5c80/common/l-contact__pc.jpg?1625742044");
background-size: cover;
background-repeat: no-repeat;
}

@media (max-width: 1023px) {
.l-contact {
  background-image: url("https://d2jgqj0z273i9k.cloudfront.net/1a907de221b962f76d152a87eefc5c80/common/l-contact__sp.jpg?1625742044");
}
}

.l-footer {
background-color: #14232D;
position: relative;
z-index: 3;
}

@media (max-width: 1023px) {
.l-footer {
  padding-top: 10px;
}
}

.l-footer .l-nav__accordion {
display: none;
}

@media (max-width: 1023px) {
.l-footer .l-nav__accordion {
  display: block;
  top: 12px;
  bottom: auto;
  left: auto;
  right: 16px;
  margin: auto auto;
  top: 0px;
  right: 0;
  width: 50px;
  height: 50px;
}
}

@media (max-width: 1023px) {
.l-footer .l-nav__accordion::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
}
}

.l-footer .l-nav__accordion::after {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto auto;
}

@media (max-width: 1023px) {
.l-footer .l-nav__accordion.is-open::after {
  content: none;
}
}

.l-footer__list {
max-width: 1110px;
margin: auto;
padding: 64px 15px;
display: flex;
}

@media (max-width: 1023px) {
.l-footer__list {
  padding: 10px 0 0 0;
  display: block;
}
}

.l-footer__item {
width: 25%;
}

@media (max-width: 1023px) {
.l-footer__item {
  position: relative;
  width: 100%;
  border-top: 1px solid #23323C;
}
}

@media (max-width: 1023px) {
.l-footer__item a {
  padding: 16px 20px;
}
}

@media (max-width: 1023px) {
.l-footer__item.u-list {
  padding: 0;
}
}

@media (max-width: 1023px) {
.l-footer__item .l-footer__list--2__item {
  border-top: 1px solid #23323C;
}
}

.l-footer__link {
color: #fff;
position: relative;
display: block;
font-weight: bold;
font-size: 18px;
transition: all 0.3s;
}

@media (max-width: 1023px) {
.l-footer__link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: normal;
}
}

.l-footer__link:hover {
color: #0097E0;
}

.l-footer__link::after {
content: "";
position: absolute;
left: 0;
bottom: -7px;
display: block;
width: 20px;
height: 2px;
background-color: #0097E0;
}

@media (max-width: 1023px) {
.l-footer__link::after {
  content: none;
}
}

.l-footer__link.arrow::before {
content: none;
}

@media (max-width: 1023px) {
.l-footer__link.arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #0097E0;
  top: 0;
  bottom: 0;
  right: 20px;
  left: auto;
  margin: auto auto;
}
}

@media (max-width: 1023px) {
.l-footer__link.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  left: auto;
  margin: auto auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0097E0;
  border-right: 2px solid #0097E0;
  transform: rotate(45deg);
  background-color: transparent;
}
}

.l-footer__list--nest__item .l-footer__list--nest__link {
color: #fff;
position: relative;
padding-left: 12px;
transition: all 0.3s;
}

.l-footer__list--nest__item .l-footer__list--nest__link:hover {
color: #0097E0;
}

@media (max-width: 1023px) {
.l-footer__list--nest__item .l-footer__list--nest__link {
  font-size: 14px;
  padding-left: 50px;
  display: block;
  padding: 0 0 0 50px;
}
}

.l-footer__list--nest__item .l-footer__list--nest__link::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
margin: auto auto;
left: 0;
width: 5px;
height: 1px;
background-color: #fff;
}

@media (max-width: 1023px) {
.l-footer__list--nest__item .l-footer__list--nest__link::before {
  left: 40px;
}
}

.l-footer__list--nest {
margin-top: 26px;
}

@media (max-width: 1023px) {
.l-footer__list--nest {
  display: none;
  margin-top: 0;
  padding-bottom: 12px;
}
}

.l-footer__list--nest__item+.l-footer__list--nest__item {
margin-top: 12px;
}

@media (max-width: 1023px) {
.l-footer__list--nest__item+.l-footer__list--nest__item {
  margin-top: 8px;
}
}

.l-footer__list--2__item+.l-footer__list--2__item {
margin-top: 36px;
}

@media (max-width: 1023px) {
.l-footer__list--2__item+.l-footer__list--2__item {
  margin-top: 4px;
}
}

.l-footer__list--2__link {
color: #fff;
}

.l-footer__bottom {
background-color: #23323C;
padding: 40px 15px;
}

@media (max-width: 1023px) {
.l-footer__bottom {
  padding: 32px 0;
}
}

.l-footer__bottom__inner {
max-width: 1080px;
margin: auto;
}

.l-footer__bottom__linkWrap {
display: flex;
align-items: center;
}

@media (max-width: 1023px) {
.l-footer__bottom__linkWrap {
  display: block;
}
}

.l-footer__logoLink {
width: 240px;
display: block;
transition: all 0.3s;
}

@media (max-width: 1023px) {
.l-footer__logoLink {
  width: 160px;
  margin: auto;
}
}

.l-footer__logoLink:hover {
opacity: 0.7;
}

.l-footer__bottom__list {
display: flex;
margin-left: 58px;
position: relative;
}

@media (max-width: 1023px) {
.l-footer__bottom__list {
  margin-top: 20px;
  margin-left: 0;
  display: flex;
  justify-content: center;
}
}

.l-footer__bottom__list::before {
content: "";
position: absolute;
width: 2px;
height: 40px;
background-color: #7D7D7D;
top: 0;
bottom: 0;
right: auto;
left: -20px;
margin: auto auto;
}

@media (max-width: 1023px) {
.l-footer__bottom__list::before {
  content: none;
}
}

.l-footer__bottom__link {
color: #fff;
padding: 10px 24px;
transition: all 0.3s;
}

.l-footer__bottom__link:hover {
color: #0097E0;
}

@media (max-width: 1023px) {
.l-footer__bottom__link {
  font-size: 12px;
  padding: 0 12.5px;
  display: block;
}
}

.l-footer__copy {
margin-top: 20px;
color: #B2B2B2;
font-size: 12px;
}

@media (max-width: 1023px) {
.l-footer__copy {
  text-align: center;
}
}

@media (max-width: 1023px) {
  .l-footer .l-footer__item a,
  .l-footer .l-footer__item > span {
      display: block;
      padding: 16px 20px;
  }
}
#modal__inner .form__item {
  display: flex;
  padding: 10px 0;
  border-top: 1px solid #F6F6F6;
  flex-direction: row;
  flex-wrap: nowrap;
  height: auto;
  min-height: auto;
}
#modal__inner .form__item > dt {
font-size: 12px;
  font-weight: bold;
  width: 190px;
  margin-left: 40px;
  flex-shrink: 0;
}
#modal__inner .form__item > dd {
  font-size: 12px;
  width: 100%;
  margin-left: 34px;
}

#modal__inner .form__item .crf--form_input-text,
#modal__inner .form__item > dd select,
#modal__inner .form__item > dd .crf--form_textarea {
  font-size: 12px;
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
}

.crf--form_input-text,
.crf--form_textarea {
  color: var(--base-txt__color);
}

.crf--form_select {
  color: #a3a3a3;
}

.crf--form_textarea::-webkit-input-placeholder{
  color: #a3a3a3;
}
.crf--form_textarea::-moz-placeholder{
  color: #a3a3a3;
}
.crf--form_textarea:-ms-input-placeholder{
  color: #a3a3a3;
}
.crf--form_textarea::-ms-input-placeholder{
  color: #a3a3a3;
}
.crf--form_textarea::placeholder {
  color: #a3a3a3;
}

.crf--form_input-text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F2F9FF inset;
}

.crf--form_textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F2F9FF inset;
}

@media (max-width: 1023px) {
  #modal__inner .form__item > dt {
    width: 80px;
    font-size: 10px;
    margin-left: 0;
  }

  #modal__inner .form__item > dd {
    font-size: 10px;
    margin-left: 1em;
  }
  .crf-form .form__item.checkbox .checkbox__labelWrap .checkbox__item::after {
    top: -12px
  }
}
