
/* :root */
:root {
  --red: #e00000;
  --main_blue: #006fbc;
  --navy:#0050a3;
  --white:#ffffff;
  --black:#000000;
  --black02:#555555;
  --btnhover:#00356c;
  --blue:#0066B4;
}

/* リセット */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  display: block;
}

/* ベース */
.bg {
	background: url("/media/images/top_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 30.1219512195%;
}
@media screen and (max-width: 767px) {
  .bg {
    background: url("/media/images/top_bg_sp.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-bottom: 85.6%;
  }
}

.main_contents {
  margin-top: -30.1219512195%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .main_contents {
    margin-top: -85.6%;
  }
}

/* グラデ1 */
/* .bg{
  z-index: -1;
    position: absolute;
  width: 100%;
  min-height: 100vh;	
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  animation: colorRotation 10s linear 0s infinite;
}

@keyframes colorRotation {
	0% {
		background-color: hsl(198, 58%, 89%);
	}
	16.66% {
		background-color: hsl(190deg, 80%, 50%);
	}
	33.33% {
		background-color: hsl(195deg, 80%, 50%);
	}
	50% {
		background-color: hsl(200deg, 80%, 50%);
	}
	66.66% {
		background-color: hsl(195deg, 80%, 50%);
	}
	83.33% {
		background-color: hsl(190deg, 80%, 50%);
	}
	100% {
		background-color: hsl(198, 58%, 89%);
	}
}
グラデ2 
.bg{
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(90deg, rgba(204, 243, 255, 1), rgba(255, 255, 255, 1) 50%, rgba(94, 210, 255, 1)) 0 / 200% 100%;
  height: 300px;
  width: 100%;
}
@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
} 

.main_contents {
  line-height: 1.5;
} */

.media_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .media_wrapper {
    padding: 0 20px;
  }
}

.flex_space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex_left {
  display: flex;
  justify-content: left;
  align-items: center;
}

.a_link {
  color: var(--main_blue);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.3s ease;
}
@media (hover: hover) {
  .a_link:hover {
    text-decoration: none;
  }
}

.c-icon-blank {
  position: relative;
  display: inline-block;
  margin-left: .25em;
  margin-right: .5em;
  width: 10px;
  height: 10px;
  color: #999999;
}
.c-icon-blank::after, 
.c-icon-blank::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  border: solid 1px currentColor;
border-top-width: medium;
}
.c-icon-blank::before {
  bottom: 50%;
  right: 50%;
}
.c-icon-blank::after {
top: 50%;
  left: 50%;
}



/* mainタイトル */
.main_ttl_box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .main_ttl_box {
    margin-bottom: 15px;
  }
}
.main_ttl_box .main_ttl_en {
  font-weight: bold;
  color: var(--main_blue);
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .main_ttl_box .main_ttl_en {
    font-size: 2rem;
    line-height: 1.1;
  }
}
.main_ttl_box .main_ttl_ja {
  color: var(--black);
  font-size: 1rem;
  padding-left: 5px;
  transform: translateY(-2px);
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .main_ttl_box .main_ttl_ja {
    font-size: 0.875rem;
    margin: 0;
    padding-left: 10px;
  }
}
.main_ttl_box .main_ttl_ja span{
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .main_ttl_box .main_ttl_ja span{
    padding-right: 10px;
  }
}



/* subタイトル */
.sub_ttl_box {
  width: 33%;
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  .sub_ttl_box {
    width: 100%;
  }
}
.sub_ttl_box .sub_ttl_en {
  color: var(--main_blue);
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 4px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sub_ttl_box .sub_ttl_en {
    display: block;
    margin-bottom: 5px;
  }
}
.sub_ttl_box .sub_ttl_en::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--main_blue);
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .sub_ttl_box .sub_ttl_en::before {
    margin-right: 5px;
    width: 6px;
    height: 6px;
  }
}
.sub_ttl_box .sub_ttl_en.c-white {
  color: var(--white);
}
.sub_ttl_box .sub_ttl_en.c-white::before {
  background: var(--white);
}
.sub_ttl_box .sub_ttl_ja {
  font-size: 1.7rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sub_ttl_box .sub_ttl_ja {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

/* ボタン */
.main_btn_box {
  height: 50px;
  width: 220px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .main_btn_box {
    width: 185px;
    height: 45px;
    font-size: .875rem;
  }
}
.main_btn_box .main_btn {
  background: var(--navy);
  border: 1px solid var(--main_blue);
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  padding-right: 25%;
  position: relative;
  transition: all 0.3s;
}

@media (hover: hover) {
  .main_btn_box .main_btn:hover {
    background: var(--white);
    color: var(--navy);
  }
}

/* 矢印ボタン */
.arrow {
  position: absolute;
  z-index: 10;
  margin-top: 0;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: var(--white);
  font-weight: 500;
  top: 50%;
  right: 8.5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .arrow {
    right: 6px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.arrow::after {
  content: "→";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: var(--navy);
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
}

@media (hover: hover) {
  .main_btn_box .main_btn:hover .arrow {
    background: var(--navy);
  }
  .main_btn_box .main_btn:hover .arrow::after {
    color: var(--white);
  }
}

.top_tag {
  margin-bottom: 90px;
}

.top_tag .media_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .top_tag .media_wrapper {
    flex-direction: column;
  }
}
.top_tag .top_tag_box {
  color: var(--main_blue);
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.top_tag .top_tag_box + .main_btn_box .tag_btn{
  display: none;
}

@media screen and (max-width: 767px) {
  .top_tag .top_tag_box {
    gap: 5px 10px;
    max-height: 5rem;
    overflow: hidden;
    transition: max-height 0.7s ease;
    line-height: 1.5;
    max-width: 500px;
  }

  .top_tag .top_tag_box.is-open {
    max-height: 15rem;
  }

  .top_tag .top_tag_box + .main_btn_box {
    width: 140px;
  }
  .top_tag .top_tag_box + .main_btn_box .tag_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    font-weight: bold;
    text-align: center;
    padding-right: 10%;
  }
  .top_tag .top_tag_box + .main_btn_box .tag_btn .arrow{
    width: 30px;
      height: 30px;
      line-height: 30px;
  }
  .top_tag .top_tag_box + .main_btn_box .tag_btn .arrow::after{
    content: "↓";
    font-size: 0.8rem;
  }

  .top_tag .top_tag_box.is-open + .main_btn_box .tag_btn .arrow::after{
    content: "↑";
    font-size: 0.8rem;
  }
}

.top_tag .top_tag_box a {
  position: relative;
  color: var(--main_blue);
}
@media screen and (max-width: 767px) {
  .top_tag .top_tag_box a {
    font-size: 0.875rem;
  }
}

.top_tag .top_tag_box a::after {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: solid 1px var(--main_blue);
  bottom: 0;
  left: 0;
}


@media (hover: hover) {
  .top_tag .top_tag_box a:hover {
    border-bottom: solid 2px var(--main_blue);
  }
}


.card_container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 36px;
}
@media screen and (max-width: 767px) {
  .card_container {
    justify-content: center;
    gap: 25px;
  }
}

.card_list {
  display: flex;
  height: auto;
  width: 366px;
}
.card_list .card_link {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: var(--white);
  max-width: 366px;
  box-shadow: 0px 0px 51px rgba(61, 180, 224, 0.15);
  margin: 0 auto;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .card_list .card_link:hover {
    transition: 0.3s;
    box-shadow:  0px 5px 35px -8px #3db4e0;
  }
}
.card_list .card_link .img{
  max-width: 366px;
  overflow: hidden;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.card_list .card_link .img img {
  -o-object-fit: cover;
  object-fit: cover;
  object-position:top;
  width: 100%;
  aspect-ratio: 366 / 253;
	height: auto;
  transition: transform .3s ease;
}
@media (hover: hover) {
	.card_list .card_link:hover img{
		transform: scale(1.05);
  }
}

@media screen and (max-width: 767px) {
  .card_list .card_link .img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    /* height: 190px; */
  }
}
.card_list .card_link .card_box {
  padding: 20px 35px;
  min-height: 200px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .card_list .card_link .card_box {
    padding: 15px 15px 45px 15px;
    min-height: 140px;
  }
}
.card_list .card_link .card_box .card_date {
  color: #9f9f9f;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.card_list .card_link .card_box .card_desc {
  color: var(--main_blue);
  font-weight: bold;
  font-size: 1.0625rem;
  margin-bottom: 20px;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card_list .card_link .card_box .card_desc {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.card_list .card_link .card_box .card_tag_box {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
  max-height: 6em;
}

.card_list .card_link .card_box .card_tag_box .card_tag_list {
  color: var(--black02);
  display: inline-block;
  margin-bottom: 5px;
}
.card_list .card_link .card_box .card_tag_box .card_tag_list:not(:last-child){
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .card_list .card_link .card_box .card_tag_box .card_tag_list:not(:last-child){
    margin-right: 5px;
  }
}
.mail_contact {
  margin-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .mail_contact {
    margin-bottom: 90px;
  }
}
.mail_contact .media_wrapper .mail_contact_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .mail_contact .media_wrapper .mail_contact_inner {
    flex-direction: column;
  }
}

.mailmaga_area, .contact_area {
  max-width: 570px;
  width: 100%;
  box-shadow: 0px 0px 18px rgba(53, 98, 133, 0.25);
  border-radius: 10px;
}
.mailmaga_area a, .contact_area a {
  display: block;
  width: 100%;
  height: 100%;
}

.mailmaga_box, .contact_box {
  color: var(--white);
  position: absolute;
  top: 47%;
  left: 43%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 70%;
}
@media screen and (max-width: 1040px) {
  .mailmaga_box, .contact_box {
    width: 90%;
    left: 50%;
    
  }
}
@media screen and (max-width: 767px) {
  .mailmaga_box, .contact_box {
    width: fit-content;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: matrix(1, 0, 0, 1, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  }


.top_mailmaga .sub_ttl_box, .mail_contact .sub_ttl_box {
  font-weight: bold;
  font-size: 2.0625rem;
  margin-bottom: 22px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .sub_ttl_box, .mail_contact .sub_ttl_box {
    font-size: clamp(1rem, 4.29vw, 2.625rem);
    /* margin-bottom: 18px; */
    margin-bottom: initial;
  }
}
.top_mailmaga .sub_ttl_box, .mail_contact .sub_ttl_box .sub_ttl_en{
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .sub_ttl_box, .mail_contact .sub_ttl_box .sub_ttl_en{
    font-size: .875rem;
  }
}
.top_mailmaga .sub_ttl_box, .mail_contact .sub_ttl_box h2 {
  font-size: clamp(1.0625rem, 1.829vw, 1.875rem);
  line-height: 1.5;
}


.top_mailmaga .sub_ttl_box .free_mark, .mail_contact .sub_ttl_box .free_mark {
  position: relative;
  font-size: 1rem;
  margin-left: 1.5rem;
  vertical-align: middle;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .sub_ttl_box .free_mark, .mail_contact .sub_ttl_box .free_mark {
    font-size: 0.875rem;
    padding: 2px 5px 6px;
  }
}
.top_mailmaga .sub_ttl_box .free_mark::after, .mail_contact .sub_ttl_box .free_mark::after {
  content: "";
  position: absolute;
  background-color: var(--red);
  border-radius: 50px;
  width: 95px;
  height: 30px;
  display: inline-block;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .sub_ttl_box .free_mark::after, .mail_contact .sub_ttl_box .free_mark::after {
    width: 75px;
    height: 25px;
    top: 46%;
  }
}
.top_mailmaga .mail_contact_txt, .mail_contact .mail_contact_txt {
  margin-bottom: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .mail_contact_txt, .mail_contact .mail_contact_txt {
    font-size: 0.875rem;
    /* margin-bottom: 15px; */
    margin-bottom: initial;
  }
}
.top_mailmaga .main_btn_box, .mail_contact .main_btn_box {
  width: 285px;
  height: 65px;
}
@media screen and (max-width: 767px) {
  .top_mailmaga .main_btn_box, .mail_contact .main_btn_box {
    font-size: 0.875rem;
    width: 220px;
    height: 45px;
  }
}



.mailmaga_area a .mailmaga_inner {
  position: relative;
  background: url("/media/images/mailmagazine_footer.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding-top: 67.135%;
  width: 100%;
  height: 0;
  transition: all 0.3s;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .mailmaga_area a .mailmaga_inner {
    position: relative;
    background: url("/media/images/mailmagazine_footer_sp.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 0;
    height: 250px;
  }
}

.mailmaga_area a .main_btn {
  background: var(--white);
  color: var(--navy);
}
.mailmaga_area a .main_btn .arrow {
  border: 1px solid var(--navy);
  background: var(--navy);
}

.mailmaga_area a .main_btn .arrow::after {
  color: var(--white);
}
@media (hover: hover) {
  .mailmaga_area a:hover .mailmaga_inner {
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
  }
  .mailmaga_area a:hover .mailmaga_inner .main_btn {
    background: var(--btnhover);
    color: var(--white);
  }
  .mailmaga_area a:hover .mailmaga_inner .main_btn .arrow {
    background: var(--white);
  }
  .mailmaga_area a:hover .mailmaga_inner .main_btn .arrow::after {
    color: var(--navy);
  }
}

.contact_area a .contact_inner {
  position: relative;
  background: url("/media/images/contact_footer.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding-top: 67.135%;
  width: 100%;
  height: 0;
  transition: all 0.3s;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact_area a .contact_inner {
    position: relative;
    background: url("/media/images/contact_footer_sp.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 0;
    height: 250px;
  }
}

.contact_area a .main_btn {
  background: var(--white);
  border: 1px solid #2ba3b7;
  color: #2ba3b7;
}
.contact_area a .main_btn .arrow {
  background: #2ba3b7;
  border: 1px solid #2ba3b7;
}
.contact_area a .main_btn .arrow::after {
  color: var(--white);
}
@media (hover: hover) {
  .contact_area a:hover .contact_inner {
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
  }
  .contact_area a:hover .contact_inner .main_btn {
    background: #2ba3b7;
    border: 1px solid var(--white);
    color: var(--white);
  }
  .contact_area a:hover .contact_inner .main_btn .arrow {
    background: var(--white);
  }
  .contact_area a:hover .contact_inner .main_btn .arrow::after {
    color: #2ba3b7;
  }
}

.mailmaga_area a .main_btn .arrow,
.contact_area a .main_btn .arrow{
  width: 44px;
height: 44px;
line-height: 44px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .mailmaga_area a .main_btn .arrow,
  .contact_area a .main_btn .arrow{
  width: 30px;
  height: 30px;
  line-height: 30px;
  right: 7.5px;
  }
  }

/* pagebox */
.pager {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 40px;
  }
}

.pager ol {
  display: flex;
  justify-content: center;
}

.pager ol > li {
  margin: 0 5px;
}
.pager ol > li > a,
.pager ol > li > span {
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  line-height: 54px;
  width: 54px;
  height: 54px; 
  display: block;
  text-align: center;
  transition: 0.3s;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pager ol > li > a,
  .pager ol > li > span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: .875rem;
  }
}

.pager ol > li > a {
  border-color: var(--navy);
  color: var(--navy);
}

.pager ol > li > a:has(.current) {
  color: #fff;
  background: var(--navy);
  cursor: auto;
  pointer-events: none;
}

.pager ol > li > a:hover {
  background-color: var(--navy);
  color: var(--white);
}

.pager ol > li.prev,
.pager ol > li.next {
  margin: 0 1.7rem;
}
@media screen and (max-width: 767px) {
  .pager ol > li.prev,
  .pager ol > li.next {
    margin: 0 5px;
  }
}
.pager ol > li.prev a,
.pager ol > li.next a {
  font-size: 14px;
}
/* 事例hover */
@media (any-hover: hover) and (pointer: fine) {
  .card_link:hover .card_text {
    color: initial !important;
  }
}


/***********************************
#cn-side
***********************************/

@media (max-width: 768px) {
  #cn-side.cn-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#cn-side .cn-side__inner {
  max-width: 327px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cn-side .cn-side_box {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 36px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #cn-side .cn-side_box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

#cn-side .cn-side_box .cn-side__list li:not(:last-child) {
  margin-bottom: 30px;
}
#cn-side .cn-side_box .cn-side__list li .date {
  color: #9f9f9f;
  font-size: 0.875rem;
  margin: 18px 0 10px;  
}
@media screen and (max-width: 767px) {
  #cn-side .cn-side_box .cn-side__list li .date {
    margin: 10px 0 5px;
  }
}
#cn-side .cn-side_box .cn-side__list li .dec {
  color: var(--main_blue);
  font-weight: bold;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  #cn-side .cn-side_box .cn-side__list li .dec {
    font-size: 1rem;
  }
}
#cn-side .cn-side_box .cn-side__list li .dec:has(.txt) {
  margin-bottom: 10px;
}
#cn-side .cn-side_box .cn-side__list li .txt {
  color: var(--black);
  line-height: 1.875;
}

#cn-side .cn-side_box.cn-side__link .cn-side__list li:not(:last-child) {
  margin-bottom: 16px;
}

#cn-side .cn-side__lineup,
#cn-side .cn-side_product_banner {
  border: 2px solid #0066b4;
}

@media screen and (max-width: 767px) {
  #cn-side .top_tag .top_tag_box {
    overflow: initial;
    max-height: initial;
  }}

  .cn-side__list li a{
    transition: transform .3s ease;
  }
.cn-side__list li a .img{
    border-radius: 10px;
    
    overflow: hidden;
	}
@media (hover: hover) {
.cn-side__list li a:hover img{
	transform: scale(1.05);
	border-radius: 10px;
}
.cn-side__list li a:hover p{
opacity: 0.6;
}
}
@media screen and (max-width: 767px) {
.cn-side__tag.top_tag{
margin-bottom: 0;
}
}
.cn-side_box.cn-side__rec .cn-side__list li:nth-child(n + 4) {
  display: none;
}

/***********************************
#cn-side.cn-side,#cn-footer共通
***********************************/
/* cn-side__column__ttl */
.cn-side__column__ttl {
  font-size: 18px;
  color: var(--blue);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#cn-side.cn-side .sub_ttl_box,
#cn-footer.cn-footer .sub_ttl_box {
  width: 100%;
  min-width: initial;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  #cn-side.cn-side .sub_ttl_box,
  #cn-footer.cn-footer .sub_ttl_box {
    font-size: 1.125rem;
    margin-left: 0;
  }
}
#cn-side.cn-side .sub_ttl_box .sub_ttl_en,
#cn-footer.cn-footer .sub_ttl_box .sub_ttl_en {
  margin-bottom: 0;
}
#cn-side.cn-side .sub_ttl_box .sub_ttl_ja,
#cn-footer.cn-footer .sub_ttl_box .sub_ttl_ja {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #cn-side.cn-side .sub_ttl_box .sub_ttl_ja,
  #cn-footer.cn-footer .sub_ttl_box .sub_ttl_ja {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}

/***********************************
#cn-footer
***********************************/
#cn-footer.cn-footer {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  #cn-footer.cn-footer {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .main_contents #cn-footer .cn-footer_box{
  display: none;
}}
#cn-footer.cn-footer .sub_ttl_box{
  margin-bottom: 33px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  #cn-footer.cn-footer .sub_ttl_box{
    margin-bottom: 20px;
  }
}
.cn-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px 36px;
}
@media screen and (max-width: 767px) {
  .cn-footer__list {
    justify-content: center;
    gap: 25px;
  }
}
.cn-footer__list li {
  width: 366px;
  box-shadow: 0px 0px 51px rgba(61, 180, 224, 0.15);
	overflow: hidden;
	border-radius: 10px;
}

.cn-footer__list li a img{
  transition: all 0.3s;
  border-radius: 10px;
}
@media (hover: hover) {
  .cn-footer__list li a:hover img{
		transform: scale(1.05);
  }
}

/* fade */
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition:
      opacity 1s ease-out,
      transform 1s ease-out;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}



/*# sourceMappingURL=common.css.map */