@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

li {
	list-style-type : none;
}

img[usemap] {
	border		: none;
	height		: auto;
	max-width	: 100%;
	width		: auto;
}

img {
	display		: block;
	border		: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
}

/* Flexible Images */
img{
    max-width	: 100%;
    height		: auto;
    width /***/	: auto;
}

submit	{ -webkit-appearance : none;}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin		: 0;
	padding		: 0;
	height		: 100%;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    /* ??????????? */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-size	: 1.6rem;
	font-size	: 16px;
	line-height	: 1.5;
	text-align	: center;
	color		: #000000;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
}

body *,
body *:before,
body *:after {
    box-sizing: border-box;
}

#wrap{
	margin		: 0 auto;
	text-align	: center;
}

body > #wrap { height : auto;}
h1,h2,h3,h4,h5,h6,p,span,li,a,dt,dd,th,td{    transform:rotate(0.03deg); }

/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}
a{
  text-decoration: none;
}

.btn{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 50px;
}
.btn::after{
  position: absolute;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 700;
  transition-duration: 0.3s;
}
.btn:hover::after{
  right: 17px;
  transition-duration: 0.3s;
}


/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------ */

/* ??
/* ------------------------------------------------------------------------ */

/* ?????? */

.spStyle{
    display: none !important;
}
.pcStyle{
    display: block !important;
}
@media screen and (max-width: 768px) {
  .spStyle{
      display: block !important;
  }
  .pcStyle{
      display: none !important;
  }
}

.content{
	max-width: 1400px;
  width: calc(100% - 20px);
	margin: 0 auto;
}
/* ???????? */
.mainVisual{
  position: relative;
    background-color: #00aeef;
    padding-block: 20px;
    max-width: 1920px;
    margin-inline: auto;
}
.mainVisual_content{
    position: relative;
    background-color: #e5e5e5;
    max-width: calc(100% - (20px * 2));
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #000;
}
@media screen and (max-width: 768px) {
    .mainVisual{
        padding-block: 2vw;
    }
    .mainVisual_content{
        max-width: calc(100% - (1.33vw * 2));
        padding: 2vw;
    }
  }

  .menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #00aeef;
    border: none;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 0 0 8px;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    padding: 0;
    transition: background-color 0.3s;
    z-index: 999;
}
.menu-button.is-active .menu-icon span:nth-child(1) {
    transform: rotate(20deg);
    top: 5px;
}
.menu-button.is-active .menu-icon span:nth-child(2) {
    transform: rotate(-20deg);
    bottom: 5px;
}
.menu-icon {
  width: 40px;
  height: 12px;
  position: relative;
  margin-bottom: 8px;
}
.menu-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { bottom: 0; }
.menu-text {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: sans-serif;
  line-height: 1;
}
.full-menu {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1920px;
  width: 100%;
  max-height: 870px;
  background-color:#00aeef;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  overflow: hidden;
  padding: 20px;
  padding-bottom: 23px;
}
.full-menu.is-open {
  opacity: 1;
  visibility: visible;
}


body.is-ture .mainVisual_content{
  border: none;
}
.mainLogo{
    position: absolute;
    top: min(3.13vw, 50px);
    left: min(3.13vw, 50px);
    width: min(12.5vw, 200px);
    z-index: 2;
}
.menuLogo {
  position: absolute;
  display: block;
  height: auto;
  z-index: 9999;
  top: min(1.88vw, 30px);
  left: min(1.88vw, 30px);
  max-width: min(12.5vw, 200px);
}
.menuLogo > img{
   max-width: min(12.5vw, 200px);
}
.menuArea{
  position: relative;
}
.menuArea_flex{
  display: flex;
  justify-content: flex-end;
  gap: min(62px, 3.88vw);
  margin-left: max(10px, calc((100% - 1400px) / 2));
}
.menuArea .menuArea_left{
  position: relative;
  margin-top: clamp(100px, 8.75vw, 140px);
  flex: 1;
}
.menuArea .menuArea_left::after{
  content: "";
  position: absolute;
  bottom: min(20px, 1.25vw);
  left: 0;
  max-width: 778px;
  width: 100%;
  height:auto;
  aspect-ratio: 778 / 99;
  background: url("/common/img/header/img_header_background_01.png") no-repeat center center / contain;

}
.menuArea .menuArea_right img{
  max-width: min(640px, 40vw);
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #000;
}
.menuArea_grid {
  display: grid;
  /* 基本は3列。それぞれの幅を均等(1fr)にする */
  grid-template-columns: repeat(3, 1fr);
}

.arrow li{
  position: relative;
}
.arrow li::after{
  position: absolute;
  left: min(15px, 0.94vw);
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 700;
  color: #fff;
  font-size: min(16px, 1vw);
}
.menuArea_grid .item {
  position: relative;
  display: flex;
  align-items: center;
  padding: min(24px ,1.5vw );
  padding-left: min(40px, 2.5vw);
  background-color: #00aeef; /* 青背景 */
  text-decoration: none;
  margin-right: -1px;
  margin-bottom: -1px;
  border: 1px solid #fff; /* 枠線の色 */
}
.menuArea_grid .item a{
  color: #fff;
  font-size: 18px;
  font-size: min(18px,1.13vw);
  font-weight: 700;
}
.menuArea_grid .item.voice{
  border-top: 1px solid #fff;
}
.menuArea_grid .top {
  grid-column: 1 / 4;
}
.menuArea_grid .parent {
  grid-column: 1 / 3;
}
.menuArea_grid .voice {
  grid-column: 3 / 4;
}
.sns{
  margin-top: min(30px, 1.88vw);
}
.sns ul{
  display: flex;
  justify-content: flex-end;
  gap: min(20px, 1.25vw);
}
.sns ul li img{
  width: min(20px, 1.25vw);
  height: auto;
}

.others_flex li .btn_contact{
  display: flex;
  max-width: min(260px, 16.25vw);
  width: 100%;
  height: min(50px, 3.13vw);
  background-color: #fff;
  color: #000;
  font-size: min(16px, 1vw);
  font-weight: 600;
}
.others_flex{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: min(20px, 1.25vw);
  margin-top: min(40px, 2.5vw);
}
.others_flex li{
  position: relative;
  padding-left: min(25px, 1.56vw);
  line-height: 1;
}
.others_flex li a{
  color: #fff;
  font-weight: 600;
  font-size: min(16px, 1vw);
      display: block;
}
.others_flex li::after{
  left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 1;
    height: fit-content;
}
.others_flex li.arrow_n{
  padding-left: 0;
  width: min(260px , 16.25vw);
}
.others_flex li.arrow_n::after{
  display: none;;
}
@media screen and (max-width: 768px) {
  .menu-icon{
    width: 30px;
    height: 8px;
  }
  .menu-text{
    font-size: 10px;
  }
  .menu-button.is-active .menu-icon span:nth-child(2){
    bottom: 3px;
  }
   .menu-button.is-active .menu-icon span:nth-child(1) {
    top: 3px;
  }
   .menu-button{
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 5px;
  }
  .full-menu{
    aspect-ratio: auto;
    width: 100%;
    height: fit-content;
    max-height: none;
    padding: 2vw 1.33vw 21.33vw;
  }
  .mainLogo{
    top: 3.47vw;
    left: 3vw;
    width: 35.33vw;
  }
  .menuLogo{
    top: 3.47vw;
    left: 3vw;
    width: 35.33vw;
  }
  .menuLogo > img{
    max-width: 35.33vw;
  }
  .menu-button{
    width: 50px;
    height: 50px;
    right: 1.33vw;
    top: 2.13vw;
  }
  .menuArea_flex{
    flex-direction: column-reverse;
    gap: 20px;
    margin-left: 0;
  }
  .arrow li::after{
	font-size: 13px;
	left: 15px;
  }
  .menuArea_right{
    margin-top: 1px;
  }
  .menuArea .menuArea_left::after{
    width: 98.98vw;
    bottom: -18.67vw;
  }
  .menuArea .menuArea_right img{
    max-width: 100%;
    aspect-ratio: 72 / 38;
    object-fit: cover;
    margin-right: 1px;
  }
  .menuArea .menuArea_left{
    margin-top: 0;
  }
  .menuArea_grid{
    margin-inline: 10px;
  }
  .menuArea_grid .item{
    padding: 20px;
    padding-left: 40px;
  }
  .menuArea_grid .item a{
    font-size: 14px;
  }
  .menuArea_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menuArea_grid .top {
    grid-column: 1 / 3;
  }
  .menuArea_grid .voice {
    grid-column: auto;
  }
  .sns{
    margin-top: 15px;
  }
  .sns ul{
    justify-content: center;
    gap: 20px;
  }
  .sns ul li img{
    width: 20px;
  }
	.others_flex{
		margin-top: 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-inline: 10px;
	}
	.others_flex li{
		padding-left: 20px;
	}
	.others_flex li::after{
		left: 0;
	}
	
  .others_flex li a{
    font-size: 14px;
  }
  .others_flex li.arrow_n{
    width: 215px;
    margin-inline: auto;
  }
  .others_flex li .btn_contact{
    max-width: 215px;
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}




/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

/* h2???????css
--------------------------------------------------------------------------- */
.ttls{
  padding-top: 100px;
  padding-bottom: 65px;
  position: relative;
  z-index: 0;
}
.ttls::before{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.ttls::after{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.ttls h2{
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 84px;
  color: #fff;
    -webkit-text-stroke: 1.5px #000;
}
.ttls .sub{
  font-weight: 400;
  font-size: 18px;
  color: #000;
  margin-top: 40px;
  z-index: 1;
  position: relative;

}

@media screen and (max-width: 768px) {
   .ttls{
        padding: 60px;
    }
    .ttls::before{
        left: 20px;
        right: auto;
    }
    .ttls::after{
        right: 20px;
        left: auto;
    }
    .ttls h2{
      font-size: 40px;
      line-height: 60px;
      text-align: left;
      -webkit-text-stroke: 1px #000;
    }
    .ttls .sub{
      font-size: 13px;
      line-height: 23px;
      margin-top: 30px;
      text-align: left;
    }
}

/* ????????????css
--------------------------------------------------------------------------- */

.moreArea{
    border-top: 1px solid #000;
    padding-block: 40px;
}
.moreArea .btn{
    max-width: 260px;
    height: 50px;
    margin: auto;
    background-color: #000;
    color: #fff;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
  .moreArea{
    padding-block: 30px;
  }
  .moreArea .btn{
    max-width: 215px;
    height: 40px;
    font-size: 14px;
  }
}

/* ????????
--------------------------------------------------------------------------- */

.card{
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #000;
  background-color: #fff;
}
.card:hover{
  opacity: 0.8;
}
.card .ttl{
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-top: 30px;
}
.card .cate {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 5px;
}
.card .cate li{
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.card .time {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

/* slick ???????????css
--------------------------------------------------------------------------- */

.slick-controls {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    width: 100%;
}
.slick-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-block: 40px;
}
.slide-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #222;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: 0.3s;
}
.slide-arrow::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}
.prev-btn::before {
    content: '\f060';
}
.next-btn::before {
    content: '\f061';
}
.slide-arrow:hover {
    background-color: #555;
    transform: scale(1.1);
}
.slide-arrow.slick-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.slick-prev, .slick-next {
    display: none !important;
}
.news_cards .slick-track {
    display: flex !important;
    align-items: stretch;
}
.slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: fit-content !important;
    height: fit-content !important;
}
.slick-dots li button:before{
  display: none;
}
.slick-dots li.slick-active button {
    background: #222;
}

/* ?????????????? */
.slick-dots li button {
    font-size: 0;
    padding: 0;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    border: 1px solid #222 !important;
    background: transparent;
    cursor: pointer;
    display: block;
    transition: 0.3s;
    padding: 0 !important;
}

/* --- 3. ????ul???? --- */
.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none?!important;
    gap: 10px !important;
    position: static !important;
    order: 2 !important;
    width: auto !important;
}


/* ?????????? */
.-prev {
    order: 1 !important; /* ??? */
}
.-next {
    order: 3 !important; /* ??? */
}

@media screen and (max-width: 768px) {
  .slick-controls{
    margin-block: 20px;
    gap: 15px;
  }
  .slide-arrow{
    width: 40px;
    height: 40px;
  }
  .slide-arrow::before{
    font-size: 12px;
  }
  .slick-dots li button{
    width: 8px !important;
    height: 8px !important;
  }
  .slick-dots{
    gap: 8px !important;
  }
}


/* ------------------------------------------------------------------------

question

------------------------------------------------------------------------ */


.question_content{
    background-color: #fff;
    padding: 60px;
	border-right: solid 1px #000;
	border-left: solid 1px #000;
}
.question_flex{
    margin-top: 60px;
    display: flex;
    gap: 40px;
}
.question_flex.flex_reverse{
    flex-direction: row-reverse;
}
.question_flex .question_image{
    max-width: 550px;
    width: 100%;
    flex: 1;
}
.question_flex img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.question_text{
    margin-top: 27px;
    display: block;
    flex: 1;
    width: auto;
    text-align: left;
}
.question_text h3{
    font-size: 40px;
}
.question_text p{
    font-size: 18px;
    line-height: 34px;
    margin-top: 20px;
}
@media screen and (max-width: 1000px) {
    .question_flex{
        flex-direction: column;
        gap: 0px;
    }
    .question_flex.flex_reverse{
        flex-direction: column;
    }
    .question_flex .question_image{
        width: 100%;
        margin-inline: auto;
    }
}
@media screen and (max-width: 768px) {
    .question_content{
        padding: 40px 20px 50px;
    }

    .question_flex img{
        border-radius: 5px;
    }
    .question_text{
        margin-top: 30px;
    }
    .question_text h3{
        font-size: 27px;
    }
    .question_text p{
        margin-top: 30px;
        font-size: 13px;
        line-height: 23px;
    }
}

/* ------------------------------------------------------------------------

pageMenu

------------------------------------------------------------------------ */

.pageMenu{
    border-top: 1px solid #000;
}

.pageMenu ul{
    display: flex;
    justify-content: center;
    border-inline: 1px solid #000;
    overflow: hidden;
}
.pageMenu li{
    flex: 1;
    position: relative;
    /* border-right: 1px solid #000; */
}
.pageMenu li::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0; /* 右端に固定 */
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 10;
}
.pageMenu li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.pageMenu li a:hover::after{
    bottom: 7px;
    transition-duration: .3s;
}
.pageMenu li a::after{
    position: absolute;
    top: 0;
    right: 38px;
    bottom: 0;
    margin: auto 0;
    font-family: "Font Awesome 6 Free";
    content: "\f103";
    font-weight: 900;
    line-height: 1;
    height: fit-content;
    display: block;
    transition-duration: .1s;
}
.pageMenu li:nth-child(1){
    background-color: #fff3b8;
}
.pageMenu li:nth-child(2){
    background-color: #f1e5ff;
}
.pageMenu li:nth-child(3){
    background-color: #fae3c8;
}
.pageMenu li:last-child::after{
    display: none;
}

@media screen and (max-width: 768px) {
    .pageMenu li a{
        font-size: 13px;
        height: 80px;
        padding-bottom: 15px;
    }
    .pageMenu li a::after{
        top: auto;
        bottom: 10px;
        right: 0;
        left: 0;
    }
}
/* ------------------------------------------------------------------------

Footer

------------------------------------------------------------------------ */

footer{
  border-top: 1px solid #000;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.footer_grid {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-template-rows: auto min-content;
	grid-template-columns: 25% 15% 15% 15% 15% 15%;
}
.box{
  border-right: 1px solid #000;
  padding: clamp(5px, 1.88vw + 0px, 30px);
}
.box1 {
    grid-row: span 2 / span 2;
    border-left: none;
    padding-left: 0;
}
.box4 {
    grid-column: span 3 / span 3;
}
.box5 {
    grid-column-start: 2;
    grid-row-start: 2;
}
.box6 {
    grid-column-start: 3;
    grid-row-start: 2;
}
.box7 {
    grid-column-start: 4;
    grid-row-start: 2;
}
.box8 {
    grid-column-start: 5;
    grid-row-start: 2;
}
.box9 {
    grid-column-start: 6;
    grid-row-start: 2;
}
.box5,.box6,.box7,.box8,.box9{
  border-top: 1px solid #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer_grid .box ul li{
  position: relative;
  font-size: 18px;
  line-height: 1;
  text-align: left;
  padding-left: 23px;
}
.footer_grid .box ul li a{
  color: #000;
}
.footer_grid .box ul li + li{
  margin-top: 29px;
}
.footer_grid .box ul li:before{
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 700;
}
.footer_grid .box .child {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
}
.footer_grid .box .child li{
  margin-top: 0;
  font-size: 16px;
}
.footer_grid .box .child li::before{
  top: 3px;
  left: 3px;
  content: "\f111";
  font-weight: 900;
  font-size: 8px;
}
.footer_grid .box3 .child {
  grid-template-columns: 1fr;
}
.footer_grid .footerLogo{
  display: block;
  max-width: 230px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 28px;
}
.footer_grid .information{
  font-size: 16px;
  text-align: left;
  margin-bottom: 15px;
  line-height: 1;
}
.footer_grid .btn{
  max-width: 260px;
  height: 50px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
}
.footer_bottom{
  border-top: 1px solid #000;
}
.footer_bottom .sns_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer_bottom .sns_copy{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
.footer_bottom .snsIcon{
  width: 40px;
  height: 40px;
}
.footer_bottom .copy{
  font-size: 16px;
  font-weight: 400;
  color: #999;
}
@media screen and (max-width: 1440px) {
	footer .box{
		padding: 20px 15px;
	}
}
@media screen and (min-width: 1201px) {
	.footer_grid .box .child{
		display: grid !important;
	}
}
@media screen and (max-width: 1200px) {
  .footer_grid .footerLogo{
    margin-top: 0;
    margin-inline: auto;
    margin-bottom: 35px;
    max-width: 146px;
    width: 100%;
    height: auto;
  }
  .footer_grid .information{
    font-size: 13px;
    line-height: 24px;
    text-align: center;
  }
  .footer_grid .btn{
    margin-inline: auto;
    font-size: 14px;
    max-width: 215px;
  }
  .footer_grid{
    grid-template-columns: 1fr;
  }
  .footer_grid .box{
    grid-row: auto;
    grid-column: auto;
    border: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    padding: 20px;
  }
  .footer_grid .box1{
    padding-block: 50px;
  }
  .footer_grid .box9{
    border-bottom: none;
  }
  .footer_grid .box ul li{
    font-size: 14px;
  }
  .footer_grid .box .spAccordion{
    position: relative;
    cursor: pointer;
  }
  .footer_grid .box .spAccordion::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: 900;
    right: 0px;
    top: -5px;
  }
  .footer_grid .is-active .spAccordion::after{
    content: "\f068";
  }
  .footer_grid .box .child{
    display: none;
    margin-top: 0;
    padding-top: 20px;
    padding-left: 30px;
	max-width: 380px;
    /* border-left: 1px solid #000; */
  }
  .footer_grid .box .child li{
    font-size: 14px;
  }
  .footer_bottom .sns_copy{
    display: block;
  }
  .footer_bottom .sns_flex{
    gap: 40px;
    height: 100px;
  }
  .footer_bottom .copy{
    border-top: 1px solid #000;
    font-size: 10px;
    height: 69px;
  }
}
