@charset "utf-8";

html,
body {
  font-size: 16px;
  min-width: 300px;
  letter-spacing: -0.5px;
}
body {
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}
* {
  word-break: keep-all;
}

.br_pc {
  display: block;
}
.br_m {
  display: none;
}
.br_480 {
  display: none;
}
.sr_only {
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.text_hidden {
  text-indent: -9999em;
  color: transparent;
}
.fadeIn {
  animation: fadeIn 0.5s 0s 1 both;
}
.fadeOut {
  animation: fadeOut 0.5s 0s 1 both;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis.clamp {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.ellipsis.clamp2 {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  /* opacity: 1; */
  color: #bebebe;
}

/* aos */
.swiper-slide-active .aos-item {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos^='fade'].aos-animate.aosDelay1 {
  transition-delay: 0.2s;
}
[data-aos^='fade'].aos-animate.aosDelay2 {
  transition-delay: 0.4s;
}
[data-aos^='fade'].aos-animate.aosDelay3 {
  transition-delay: 0.6s;
}
[data-aos^='fade'].aos-animate.aosDelay4 {
  transition-delay: 0.8s;
}
[data-aos^='fade'].aos-animate.aosDelay5 {
  transition-delay: 1s;
}
[data-aos^='fade'].aos-animate.aosDelay6 {
  transition-delay: 1.2s;
}
[data-aos^='fade'].aos-animate.aosDelay7 {
  transition-delay: 1.4s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.news_list li {
  transition: color 0.2s;
}
.news_list li:hover h3 {
  color: #3889ff;
}
.list_list li {
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
}
.list_list li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  padding: 1.5rem 2.5rem;
}
.list_list li .wrap {
  width: 80%;
}
.list_list li h3 {
  width: 100%;
  font-weight: 700;
}
.list_list li .date {
  color: #999;
}

.top_btn {
  position: fixed;
  z-index: 1000;
  width: 4rem;
  height: 4rem;
  color: #fff;
  background: #5592ff;
  border-radius: 50%;
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
  line-height: 4rem;
  font-weight: 700;
  right: 3.5%;
  bottom: 2.5rem;
  transform: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s;
}
.top_btn.abs {
  position: absolute;
  bottom: 150px;
  transform: translateY(50%);
}
.top_btn.main_top.abs {
  position: fixed;
}

.fullpage{
    height: calc(100vh - 80px);
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
}
#header > .inner {
  max-width: 1530px;
  height: 100%;
  margin: 0 auto;
  padding:0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
#header h1 {
  width: 153px;
  height: 36px;
  background: url('../images/logo_header.png') no-repeat;
  background-size: contain;
}
#header h1 a {
  width: 100%;
  height: 100%;
}
.m_menu {
  position: absolute;
  width: 25px;
  height: 22px;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  display: none;
}
.m_menu span {
  display: block;
  position: absolute;
  z-index: 1001;
  width: 25px;
  height: 3px;
  right: 0;
  background: #222;
  border-radius: 1rem;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.m_menu span:nth-of-type(1) {
  top: 0;
}
.m_menu span:nth-of-type(2) {
  top: 9px;
  left: 6px;
  width: 19px;
}
.m_menu span:nth-of-type(3) {
  top: 18px;
}
.m_menu.on span:nth-of-type(1) {
  top: 9px;
  transform: rotate(135deg);
}
.m_menu.on span:nth-of-type(2) {
  opacity: 0;
}
.m_menu.on span:nth-of-type(3) {
  top: 9px;
  transform: rotate(-135deg);
}
#gnb.pc_nav {
  display: block;
  height: 100%;
}
#gnb ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
  font-weight: 700;
  font-size: 1.125rem;
}
#gnb ul li {
  height: 100%;
  position: relative;
  margin-left:2em;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
#gnb ul li.on:after,
#gnb ul li:hover:after {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  background: #3889ff;
}
#gnb ul li a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  font-weight: 800;
  line-height: 80px;
  letter-spacing: 0;
}
#gnb ul li.on a,
#gnb ul li:hover a {
  color: #5592ff;
}
#m_nav {
  display: none;
  width: 100%;
  height: 0;
  background: #ebf3ff;
  overflow: hidden;
  transition: height 0.4s ease-out;
  position: relative;
  z-index: 1000;
}
#m_nav.on {
  height: 100vh;
}
#m_nav > ul {
  width: 100%;
  box-sizing: border-box;
  padding: 1.8rem;
}
#m_nav > ul > li {
  width: 100%;
  margin-bottom: 0.5rem;
}
#m_nav > ul > li:last-child {
  margin-bottom: 0;
}
#m_nav > ul > li > a {
  line-height: 4.5rem;
  background: #fff;
  box-sizing: border-box;
  padding-left: 5%;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}
#m_nav > ul > li.depth > a > i {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
}
#m_nav > ul > li.depth > a > i > span {
  display: block;
  width: 15px;
  height: 2px;
  background: #333;
  border-radius: 0.5rem;
  position: absolute;
  left: 0;
  top: 7px;
}
#m_nav > ul > li.depth > a > i > span:nth-of-type(1) {
  transform: rotate(90deg);
  transition: transform 0.25s ease-in-out;
}
#m_nav > ul > li.depth > a > i > span:nth-of-type(2) {
  opacity: 1;
  transform: rotate(0deg);
  transition-property: transform, opacity;
  transition-timing-function: ease-in-out;
  transition-duration: 0.25s, 0.25s;
}
#m_nav > ul > li.depth > a.on > i > span {
  background: #3889ff;
}
#m_nav > ul > li.depth > a.on > i > span:nth-of-type(1) {
  transform: rotate(0deg);
}
#m_nav > ul > li.depth > a.on > i > span:nth-of-type(2) {
  opacity: 0;
  transform: rotate(-90deg);
}
#m_nav .sub {
  display: none;
  overflow: hidden;
}
#m_nav .sub > ul {
  box-sizing: border-box;
  padding: 1rem 0;
}
#m_nav .sub > ul li {
  margin-bottom: 0.5rem;
}
#m_nav .sub > ul li:last-child {
  margin-bottom: 0;
}
#m_nav .sub > ul a {
  box-sizing: border-box;
  padding: 0 10%;
  line-height: 2.2rem;
  font-size: 1.075rem;
  color: #555;
  font-weight: 500;
}
#m_nav .sub > ul a.on {
  color: #3889ff;
}

main {
    width: 100%;
    margin-top:80px;
}
/* about_contact */
#about_contact {
  display: flex;
}
#about_contact > div {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about_contact > div > .inner {
  width: 70%;
  height: auto;
}
#about_contact .inner .title_wrap > .wrap {
  position: relative;
  margin: 0;
}
#about_contact .inner .title_wrap h2,
.contact .content_wrap h2 {
    color: #1c1c1c;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about_notice {
  background: url('../images/bg_main_sect5_1.png') no-repeat left center;
  background-size: cover;
  color: #fff;
}
.about_notice .inner .title_wrap h2,
.contact .content_wrap h2 {
  color: #fff !important;
}
.about_notice .inner .title_wrap p {
  font-size: 1rem;
}
.about_notice .inner .title_wrap .more_btn {
  color: #fff;
  border-color: #fff;
}
.about_notice .notice_list li {
  transition: color 0.2s;
}
.about_notice .notice_list li:hover h3 {
  color: #3889ff;
}
.about_notice .inner .about_us .title_wrap .more_btn {
  color: #fff;
  border-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}
.about_notice .corp_info_wrap {
  display: flex;
  margin-top: 1rem;
  gap: 2%;
  font-size: 0.85rem;
  margin-bottom: 3rem;
}
.about_notice .corp_info_wrap .content_left {
  width: 64%;
}
.about_notice .corp_info_wrap .content_left dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.about_notice .corp_info_wrap .content_left dl > * {
  box-sizing: border-box;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.5rem;
  line-height: 17px;
}
.about_notice .corp_info_wrap .content_left dl > dt {
    position: relative;
    width: 30%;
    background: #3889ff;
    text-align: center;
    font-weight: 700;
    border-radius: 20px 0 0 20px;
}
.about_notice .corp_info_wrap .content_left dl > dd {
    width: 70%;
    background: #fff;
    color: #000;
    border-radius: 0 0.3125rem 0.3125rem 0;
}
.about_notice .corp_info_wrap .content_left dl > dt:last-of-type,
.about_notice .corp_info_wrap .content_left dl > dd:last-of-type,
.about_notice .corp_info_wrap .content_right dl > dt:last-of-type,
.about_notice .corp_info_wrap .content_right dl > dd:last-of-type {
  margin-bottom: 0;
}
.about_notice .corp_info_wrap .content_right {
  width: 34%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}
.about_notice .corp_info_wrap .content_right p:first-of-type {
  margin-bottom: 5px;
}

.contact_newsletter {
  background: url('../images/bg_main_sect5_2.png') no-repeat center center;
  background-size: cover;
}
.common_bottom{margin-top:6rem;}
.common_bottom .contact{display:none;}

#product .common_bottom .contact,
#product_detail .common_bottom .contact,
#company .common_bottom .contact,
#company_detail .common_bottom .contact{display:block;}

.contact .content_wrap {
  margin-top: 2rem;
  border-radius: 20px 20px 40px 20px;
  background: url('../images/bg_main_sect5_3.png') no-repeat center center;
  background-size: cover;
  padding: 2.7rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.contact .content_wrap p {
  line-height: 1.8rem;
}
.contact .content_wrap span {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}

.newsletter .content_wrap {
  margin-top: 2rem;
  height: 13.5rem;
  background: #5592ff;
  border-radius: 0.625rem 0.625rem 2.5rem 0.625rem;
  box-sizing: border-box;
  padding: 2.7rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newsletter .content_wrap .subscription {
  display: flex;
  justify-content: space-between;
}
.newsletter .content_wrap .subscription #email {
  display: block;
  width: 100%;
  border: 0 none;
  background: transparent;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
  color: #fff;
  outline: none;
  font-size: 1.3rem;
}
.newsletter .content_wrap .subscription input#email::placeholder {
  color: #fff;
  font-size: 1.3rem;
  opacity: 0.5;
}
.newsletter .content_wrap .subscription input#email:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #5592ff inset;
  -webkit-text-fill-color: #fff;
}
.newsletter .content_wrap .subscription label {
  font-weight: 500;
  font-size: 0.85rem;
}
.newsletter .content_wrap .subscription input#agree {
  margin-right: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #fff;
  position: relative;
  top: -2px;
  color: #fff;
}
.newsletter .content_wrap .subscription input#agree:before {
  content: '\2713';
  position: absolute;
  top: 48%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}
.newsletter .content_wrap .subscription input#agree:checked:before {
  transform: scale(0.95) translate(-50%, -50%);
}
.newsletter .content_wrap .subscription button {
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.newsletter .content_wrap .subscription button > span {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}

#footer {
  background: #333;
  color: #fff;
  font-weight: 300;
  height: 150px;
  font-size: 0.875rem;
  position: relative;
}
#footer > .inner {
  max-width: 1575px;
  width: 85%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .footer_menu {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  align-items: center;
}
#footer .footer_menu a {
  color: #fff;
  letter-spacing: 0;
}
#footer .copyright {
  color: #989898;
}
#footer .family_site {
  width: 11rem;
  position: relative;
}
#footer .family_site a {
  color: #fff;
}
#footer .family_site > div {
  width: 100%;
  font-size: 0.9375rem;
  position: relative;
}
#footer .family_site .family_main {
  box-sizing: border-box;
  padding: 0 1.5rem;
  line-height: 2.8rem;
  border-radius: 1.4rem;
  cursor: pointer;
}
#footer .family_site .family_main:after {
  content: '';
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: 1.1rem;
  transform: translateY(-50%);
}
#footer .family_site .family_off .family_main {
  /* display: none; */
  position: relative;
  border: 1px solid #fff;
}
#footer .family_site .family_off .family_main:after {
  background: url('../images/ico_family_off.png') no-repeat;
  background-size: 100% 100%;
}
#footer .family_site .family_on {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  transition: all 0.5s;
}
#footer .family_site .family_on .family_main {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: rgba(0, 58, 157, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .family_site .family_on .family_main:after {
  background: url('../images/ico_family_on.png') no-repeat;
  background-size: 100% 100%;
}
#footer .family_site .family_on ul {
  /* display: none; */
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
  border-top-left-radius: 1.4rem;
  border-top-right-radius: 1.4rem;
  background: rgba(0, 58, 157, 0.8);
  box-sizing: border-box;
  padding: 1.5rem;
}
#footer .family_site .family_on ul li {
  margin-bottom: 1rem;
}
#footer .family_site .family_on ul li:last-child {
  margin-bottom: 0;
}

/* sub */
.sub_inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.top_area {
  width: 100%;
  height: 130px;
  border-bottom-right-radius: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.top_area h2 {
  font-size: 2rem;
  font-weight: 700;
}

.m_location {
  display: none;
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  background: #fff;
}
.m_location.fixed {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 500;
  margin: 0;
}
.m_location .select_form {
  width: 100%;
  position: relative;
}
.m_location .select_form > a {
  padding: 1.2rem 2rem;
  position: relative;
  color: #333;
}
.m_location .select_form > a > i {
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 0.8rem;
  background: url('../images/ico_arrow_location.png') no-repeat center right;
  background-size: contain;
}
.m_location .select_form a {
  font-size: 1.2rem;
  border-bottom: 1px solid #e4e4e4;
}
.m_location ul {
  display: none;
  position: absolute;
  z-index: 200;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.m_location ul a {
  padding: 1.2rem 2rem;
  background: #f4f4f4;
}
.tab_area {
  width: 100%;
  height: 4.2rem;
  margin-bottom: 2rem;
  transition: top 0.3s ease;
}
.tab_area ul {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #e4e4e4;
}
.tab_area li {
  flex: 1 1 0;
  position: relative;
  height: 100%;
  background: #fff;
}
.tab_area li:not(:last-child):after {
  content: '';
  display: block;
  width: 1px;
  height: 1rem;
  background: #e4e4e4;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.tab_area li a {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 4.2rem;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1rem;
}
.tab_area li.on a {
  color: #3889ff;
  border-bottom: 3px solid #3889ff;
}
.for_tab.fixed {
  background: #fff;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin: 0;
  padding: 0 5%;
}
.for_tab.fixed .tab_area {
  margin-bottom: 0;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.pagination li {
  width: 2rem;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 0.5rem;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li a {
  width: 100%;
  height: 100%;
  color: #000;
  background: #fff;
  text-align: center;
  line-height: 2rem;
}
.pagination li.on {
  border: 1px solid #3889ff;
}
.pagination li.on a {
  color: #fff;
  background: #3889ff;
}
.pagination li.arrow a {
  background: url('../images/ico_arrow_pagination_next.png') no-repeat center
    center;
}
.pagination li.prev a {
  background-image: url('../images/ico_arrow_pagination_prev.png');
}
.pagination li.disabled a {
  opacity: 0.5;
}
.share_wrap {
  position: absolute;
  right: 0;
  bottom: 1rem;
  display: flex;
  gap: 0.8rem;
}
.share_wrap .share_btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
}
.share_wrap .share_btn i {
  display: inline-block;
  margin-right: 0.3rem;
  position: relative;
  top: 3px;
  width: 1rem;
  height: 1rem;
  background: url('../images/ico_share1.png') no-repeat center center;
  background-size: contain;
}
.share_wrap a:not(:first-of-type) {
  width: 1.3rem;
  height: 1.3rem;
}
.share_wrap .facebook_btn {
  background: url('../images/ico_share2.png') no-repeat center center;
  background-size: contain;
}
.share_wrap .kakaotalk_btn {
  background: url('../images/ico_share3.png') no-repeat center center;
  background-size: contain;
}
.share_wrap .url_btn {
  background: url('../images/ico_share4.png') no-repeat center center;
  background-size: contain;
}

/* policy */
.policy {
  padding-top: 90px;
}
.policy > .sub_inner {
  margin: 5rem auto 8rem;
  position: relative;
}
.policy h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 5rem;
}
.policy h2:after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  background: #3889ff;
}
.policy p {
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: -0.15px;
  line-height: 1.6rem;
  word-break: keep-all;
  color: #333;
}
.policy a {
  color: inherit;
}
.policy table {
  max-width: 100%;
  margin-top: 0.5rem;
  border: 1px solid #dbdbdb;
}
.policy table tr:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}
.policy table td {
  width: auto;
}

/* mediaquery */
@media screen and (max-width: 1680px) {

  #about_contact .inner .title_wrap > p {
    font-size: 0.95rem;
    letter-spacing: -1px;
  }
  .about_notice .corp_info_wrap {
    font-size: 0.8rem;
    letter-spacing: -1px;
  }
  .about_notice .corp_info_wrap .content_right {
    padding: 0.8rem;
  }
  .contact .content_wrap {
    padding: 2.1rem;
  }

  #footer .family_site {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 1280px) {

  #about_contact > div > .inner {
    width: 75%;
  }
  .about_notice .inner .title_wrap p {
    font-size: 0.9rem;
  }
  .about_notice .corp_info_wrap {
    margin-bottom: 2rem;
  }
  .about_notice .corp_info_wrap .content_left {
    width: 66%;
  }
  .about_notice .corp_info_wrap .content_right {
    width: 32%;
    padding: 0.6rem;
  }
  .contact .content_wrap {
    padding: 1.7rem;
    font-size: 0.9rem;
  }
  .contact .content_wrap p {
    line-height: 1.5rem;
  }
  .newsletter .content_wrap {
    padding: 3rem 2rem;
    font-size: 0.9rem;
  }
  .newsletter .content_wrap .subscription #email {
    font-size: 1.1rem;
  }
  .newsletter .content_wrap .subscription input#email::placeholder {
    font-size: 1.1rem;
  }
  .newsletter .content_wrap .subscription button {
    font-size: 0.9rem;
  }
  .newsletter .content_wrap .subscription label {
    font-size: 0.8rem;
  }
  .newsletter .content_wrap .subscription input#agree {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.3rem;
    top: -1px;
  }
  .newsletter .content_wrap .subscription input#agree:checked:before {
    transform: scale(0.8) translate(-50%, -60%);
  }
}
@media screen and (max-width: 1024px) {
  html,body {
    font-size: 14px;
  }

  #header h1{
    width: 128px;
  }

  .top_area{
    height: 90px;
  }

  #about_contact .inner .title_wrap h2,
  .contact .content_wrap h2 {
    font-size: 2.1rem;
    line-height: 2.5rem;
  }
  #about_contact > div {
    padding: 4rem 0;
  }
  #about_contact > div > .inner {
    width: 78%;
  }
  .about_notice .corp_info_wrap .content_left dl > * {
    margin-bottom: 0.68rem;
  }
  .about_notice .corp_info_wrap .content_right {
    padding: 0.8rem;
  }
  .about_notice .corp_info_wrap .content_left dl > dt {
    width: 35%;
  }
  .about_notice .corp_info_wrap .content_left dl > dd {
    width: 65%;
  }
  .about_notice .corp_info_wrap .content_left dl > dt span {
    display: block;
  }
  .br_860 {
    display: block;
  }
  .contact .content_wrap {
    font-size: 0.95rem;
    margin-top: 2.5rem;
    padding: 2.4rem 1.7rem;
  }
  .contact .content_wrap span {
    font-size: 0.9rem;
  }
  .newsletter .content_wrap .subscription input#agree:checked:before {
    transform: scale(0.7) translate(-60%, -70%);
  }
}
@media screen and (max-width: 860px) {
  #about_contact {
    display: block;
  }
  #about_contact > div {
    width: 100%;
  }
  #about_contact > div > .inner {
    width: 80%;
  }
  .about_notice .inner .title_wrap p {
    font-size: 1rem;
  }
  .about_notice .corp_info_wrap {
    font-size: 0.9rem;
    letter-spacing: 0px;
  }
  .br_860 {
    display: none;
  }
  .contact .content_wrap {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  .contact .content_wrap p {
    line-height: 1.8rem;
  }
  .newsletter .content_wrap {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  .newsletter .content_wrap .subscription #email {
    font-size: 1.3rem;
  }
  .newsletter .content_wrap .subscription input#email::placeholder {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
  .br_m {
    display: block;
  }
  .top_area {
    border-bottom-right-radius: 0;
  }
  .top_area p {
    font-size: 0.85rem;
    text-align: center;
  }
  .m_location {
    display: flex;
  }
  .m_location .select_form a {
    font-size: 1.1rem;
  }
  .tab_area {
    display: none;
  }

  #header {
    height: 60px;
  }
  #header h1 {
    width: 120px;
    height: 20px;
  }
  main{
    margin-top:60px;
  }
  .m_menu {
    display: block;
  }
  #gnb.pc_nav {
    display: none;
  }

  #about_contact .inner .title_wrap h2,
  .contact .content_wrap h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  #about_contact .inner .title_wrap > p {
    font-size: 1rem;
  }
  .about_notice .corp_info_wrap {
    display: block;
  }
  .about_notice .corp_info_wrap .content_left,
  .about_notice .corp_info_wrap .content_right {
    width: 100%;
  }
  .about_notice .corp_info_wrap .content_left dl > dt {
    border-radius: 0.625rem 0 0 0.625rem;
    width: 38.5%;
  }
  .about_notice .corp_info_wrap .content_left dl > dd {
    border-radius: 0 0.625rem 0.625rem 0;
    width: 61.5%;
  }
  .about_notice .corp_info_wrap .content_right {
    margin-top: 1rem;
    padding: 2rem 1.3rem;
    border-radius: 0.625rem;
  }

  #footer {
    font-size: 0.8rem;
  }
  #footer .footer_menu {
    gap: 1.4rem;
  }
  #footer .family_site {
    width: 8rem;
    margin-right: 1rem;
  }
  #footer .family_site > div {
    font-size: 0.875rem;
  }
  #footer .family_site .family_main {
    padding: 0 1.2rem;
    line-height: 2.4rem;
  }
  #footer .family_site .family_main:after {
    width: 0.6rem;
    height: 0.6rem;
    right: 0.9rem;
    top: 50%;
  }
  #footer .family_site .family_on ul {
    padding: 1.2rem;
  }
  #footer .family_site .family_on ul li {
    margin-bottom: 0.8rem;
  }
  #footer .family_site a {
    letter-spacing: -1px;
  }

  /* sub */
  .share_wrap {
    bottom: 2rem;
  }
  .share_wrap .share_btn {
    position: relative;
    top: 3px;
  }
  .share_wrap a:not(:first-of-type) {
    width: 1.7rem;
    height: 1.7rem;
  }

  /* policy */
  .policy {
    padding-top: 75px;
  }
  .policy h2 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 480px) {
  .br_480 {
    display: block;
  }
  #m_nav > ul > li > a {
    line-height: 4rem;
  }

  #about_contact > div > .inner {
    width: 90%;
  }
  .contact .content_wrap {
    display: block;
    font-size: 1rem;
    padding: 1.5rem 1.7rem;
    background-position: center right;
  }
  .contact .content_wrap p {
    line-height: 1.6rem;
  }
  .contact .content_wrap span {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.1rem;
  }
  .newsletter .content_wrap {
    height: auto;
    padding: 1.5rem 1.7rem 1.8rem;
    font-size: 1rem;
  }
  .newsletter .content_wrap .subscription {
    display: block;
    margin-top: 1.6rem;
  }
  .newsletter .content_wrap .subscription #email {
    font-size: 1.2rem;
  }
  .newsletter .content_wrap .subscription input#email::placeholder {
    font-size: 1.2rem;
  }
  .newsletter .content_wrap .subscription button {
    margin-top: 1.6rem;
    font-size: 1.1rem;
    margin-left: 0;
  }

  #footer .footer_menu {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #footer .footer_menu li:first-child {
    width: 100%;
  }
  #footer .footer_menu li:last-child {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .contact .content_wrap p br {
    display: none;
  }

  /* sub */
  .share_wrap {
    position: static;
    margin-top: 1rem;
  }

  .about_notice .inner .about_us .title_wrap .more_btn {
    font-size: 0.8rem;
    letter-spacing: -0.5px;
  }
}
