.sp {display: block;}
.ssp {display: none;}

@media screen and (max-width: 768px) {
.sp {display: none;}
.ssp {display: block;}
}
body {
 background: #fcfcfc;
}
p{
margin-bottom: 0;
}
.row{
margin-right: 0;
margin-left: 0;}

.header { 
  box-sizing: border-box;
  width: 100%;
font-family: serif;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  padding: 10px 0.8em ;
  margin: 0 auto;
  font-size: 1.2em;
}

.logo img {
  width: 300px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-item {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.header .header-button {
  box-sizing: border-box;
  display: inline-block;
  padding: 0.5em;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.header .header-post {
 font-size: 17px;
 font-weight: bold;
 color: #fff;
 background: #00B900;
 border: 1px #00B900 solid;
 border-radius: 3px;
}

.header .header-post:hover {
color: #fff;
opacity: 0.5;
}

.header .header-login {
 font-size: 17px;
 font-weight: bold;
 color: #fff;
 background: #00b5ad;
 border: 1px #00b5ad solid;
 border-radius: 3px;
}
.header .header-login:hover {
color: #fff;
opacity: 0.5;
}

.header .box-nav {
  width: 100%;
}

.header .inner-nav {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  height: 60px;
  max-width: 1240px;
  padding: 0;
  margin: 0 auto;
  line-height: 40px;
  list-style: none;
}

.header .menu {
 font-size: 18px;
  padding: 0 8px;
  color: #000000;
  position: relative;
  transition-duration: .20s;
  height: 30px;
  top: 15px;
}

.header .menu:hover {
border-bottom: 1px solid #000;
}


.header .menu a {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
text-decoration: none;
letter-spacing: 0.05em;
transition: all .3s;
color: #000;
}

.header .dropdown__lists {
transform: scaleY(0);
transform-origin: center top;
transition: all .3s;
width: 100%;
position: absolute;
top: auto;
left: 0;
font-size: 12px;
list-style: none;
padding-left: 0;
z-index:1;
border: solid 1px #000;
}

.menu:hover .dropdown__lists {
transform: scaleY(1);
}

.header .dropdown__list {
    background-color:  #fff;
    height: 60px;
    transition: all .3s;
    position: relative;
}
.header .dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}
.header .dropdown__list:hover {
    background-color: #dcdcdc;
}
.header .dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.header .toi {
display: flex;
padding: 5px;
}

.header .moz{
font-size: 15px;
font-weight: 600;
margin: 10px 5px 5px;
}
.header .kyan{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding: 10px;
}

.header .ga{
width: 48%;
}

.header .kyan img{
width: 100%;
height: auto;
margin-bottom: 10px;
}


/* ハンバーガーメニューのボタン */
.sp-menu__box {
  position: fixed;  /* 位置を固定 */
  top: 20px;  /* 最上部 */
  right: 10px;  /* 右端 */
  /* 中の要素を上下中央寄せ */
  display: flex;
  justify-content: center;
  align-items: center;
  /* サイズ指定 */
  height: 40px;
  width: 40px;
  /* 最前面にする */
  z-index: 100;
  background-color: #3584bb;
 border-radius: 5px;
}
/* メニューの白線を疑似要素を使って3本作成 */
.sp-menu__box span,         /* 真ん中の線 */
.sp-menu__box span:before,  /* 上の線 */
.sp-menu__box span:after {  /* 下の線 */
  /* contentの値を指定しないと疑似要素が生成されない */
  content: "";
  /* ３本線のサイズと色を指定 */
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  /* 3本線の位置は絶対位置で指定 */
  position: absolute;
}
/* 上の線の位置 */
.sp-menu__box span:before {
  /* 真ん中の線と離す距離 */
  bottom: 8px;
}
/* 下の線の位置 */
.sp-menu__box span:after {
  /* 真ん中の線と離す距離 */
  top: 8px;
}
/* チェックボックスは常に非表示 */
#sp-menu__check {
  display: none;
}
/* チェックボックスのチェックがON（スマホ用メニューを開いた状態） */
/* 真ん中の線 */
#sp-menu__check:checked ~ .sp-menu__box span {
  /* 透明にして見えなくする */
  background: rgba(255, 255, 255, 0);
}
/* 上の線 */
#sp-menu__check:checked ~ .sp-menu__box span::before {
  /* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
  bottom: 0;
  /* 右に45度傾けてバツの片側の線にする */
  transform: rotate(45deg);
}
/* 下の線 */
#sp-menu__check:checked ~ .sp-menu__box span::after {
  /* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
  top: 0;
  /* 左に45度傾けてバツの片側の線にする */
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .hamburger__content {
  left: 0;
}
/* スマホ用メニュー */
.sp-menu__content {
  /* 絶対位置で指定   */
  position: fixed;
  /* 画面全体に表示 */
  width: 100%;
  height: 100%;
  /* 開始位置は左上隅 */
  top: 0;
  left: 0;
  /* 前面に表示するがハンバーガーボタンよりは背後 */
  z-index: 90;
  background-color: #3584bb;
}
/* スマホ用メニューのリスト */
.sp-menu__list {
  padding: 30px 10px 0;
}
/* スマホ用メニュー項目 */
.sp-menu__item {
  border-bottom: solid 1px #000000;
  list-style: none;
}
/* スマホ用メニュー項目のリンク */
.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 18px;
　font-weigth: 700;
  box-sizing: border-box;
  color: #000000;
  text-decoration: none;
  padding: 5px 15px 5px 0;
}
/* ハンバーガーボタンを押してチェックがONの時だけ
   スマホ用メニューを画面左端に移動する */
#sp-menu__check:checked ~ .sp-menu__content {
  left: 0;
}
/* 変更箇所はコメントの項目のみ */
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;

  /* 普段は画面外にするために左端を画面右端の位置にする */
  left: 100%;

  z-index: 90;
  background-color: #f0ffff;
  
  /* 右端からゆっくり移動するように表示 */
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
.header .header-nav,
.header .zen {
display: none;
}
.header .box-nav {
display: none;
}
}

/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 769px) {
.sp-menu {
display: none;
}
}





.hero {
position: relative;/*親要素にrelative*/
font-family: serif;
}
.hero img{
  width: 100%;
  height: auto;
}

.hero .row{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 600px;
width:35%;
align-items: center;
}

.hero a.toi {
display: block;
text-align: center;
width: 40%;
padding: 10px 5px;
font-size: 25px;
font-weight: bold;
border: 2px solid #1bcca9;
background: #1bcca9;
color: #fff;
border-radius: 100vh;
transition: 0.5s;
margin: 20px auto;
}
.hero a.toi:hover {
color: #fff;
opacity: 0.5;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.hero .row{
width: 100%;
margin: 15px auto;
}
.hero a.toi {
width: 54%;
padding:0;
font-size: 22px;
}
}

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

.hero .row{
width: 70%;
margin: 15px auto;
}
.hero a.toi {
width: 80%;
padding:0;
font-size: 16px;
}
}


@media screen and (max-width: 768px) {
.hero .pc_top {
display: none;
}
}

/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 769px) {
.hero .sp_top {
display: none;
}
}

.campaign{
font-family: serif;
padding-top:10px;
margin-bottom: 30px;
}
.campaign .container{
max-width: 1920px;
width: 90%;
margin: 0 auto;
}
.campaign h2{
font-size: 35px;
font-weight: bold;
text-align: center;
}
.campaign hr{
border: solid 2px #2cb67d;
margin: 0 auto 40px;
width: 60px;
}
.campaign ul{
padding-left: 0;
}
.campaign .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:100%;
    margin:0 auto;
}

.campaign .slider img {
    width:25vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.campaign .slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.campaign .slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.campaign .slick-prev, 
.campaign .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 38%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.campaign .slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.campaign .slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.campaign .slick-dots {
    text-align:center;
  margin:10px 0 0 0;
}

.campaign .slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.campaign .slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.campaign .slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

.campaign .pic img{
display: block;
width: 30%;
margin: 10px auto 0;
}

@media only screen and (max-width: 768px) {
 .campaign{
margin-bottom: 0;
}
 .campaign h2{
font-size: 25px;
}
.campaign hr{
margin-bottom: 20px;
}
.campaign .slider img {
width:65vw;
}
.campaign .slick-prev, 
.campaign .slick-next {
border-top: 0;
border-right: 0;
}
}





.section1{
margin-bottom: 40px;
font-family: serif;
}

.section1 .container{
max-width: 1920px;
width: 90%;
margin: 0 auto;
position:relative;
}
.section1 h2{
font-size: 60px;
font-weight: 700;
text-align: center;
padding: 110px 0 220px;
}
.section1 h3{
font-size: 24px;
text-align: center;
}
.section1 .worries_img{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
margin: 25px 0;
}
.section1 .col_img{
width: 49%;
display: flex;
align-items: center;
justify-content: center;
}
.section1 .col_img img{
width: 55%;
border-radius: 100%;
}
.section1 .worries_img_ba{
background-image: url(https://stat.ameba.jp/user_images/20241219/10/choice-one/f6/99/p/o1920134515523164547.png);
background-position: center;
background-size: contain;
background-repeat: no-repeat;
height: 12.5vw;
width: 20%;
display: flex;
align-items: center;
justify-content: center;
position:absolute;
}
.section1 .worries_img_co{
font-size: 20px;
text-align: center;
font-weight:700;
}
.section1 .co1{
top: 45%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co2{
top: 80%;
left: 30%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co3{
top: 50%;
left: 43%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co4{
top: 82%;
right: 23%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co5{
top: 40%;
right: 0%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.section1 h2{
font-size: 45px;
}
.section1 .worries_img_co{
font-size: 11px;
}
.section1 .co1{
top: 60%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co2{
top: 85%;
left: 30%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co3{
top: 63%;
left: 43%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co4{
top: 90%;
right: 23%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co5{
top: 70%;
right: 0%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
}
@media screen and (max-width: 767px) {
.section1 h2{
font-size: 24px;
padding: 110px 0 140px;
}
.section1 h3{
font-size: 14px;
}
.section1 .col_img{
width: 100%;
margin-bottom: 100px;
}
.section1 .col_img img{
width: 70%;
border-radius: 100%;
}
.section1 .worries_img_ba{
height: 29vw;
width: 46%;
}
.section1 .worries_img_co{
font-size: 12px;
margin-bottom:0;
margin-left: 9px;
}
.section1 .co1{
top: 30%;
left: -5%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co2{
top: 45%;
left: 58%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co3{
top: 55%;
left: 0%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co4{
top: 77%;
right: 60%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
.section1 .co5{
top: 85%;
right: 0%;
animation: fadeIn 5s ease 1s 1 normal backwards;
}
}

.section2{
padding: 110px 0 40px;
font-family: serif;
}

.section2 .container{
max-width: 1900px;
width: 95%;
margin: 0 auto;
position:relative;
}
.section2 .worriesse{
font-size: 30px;
line-height: 2.5;
text-align: center;
}
.section2 .worriesse_first{
font-weight: 700;
margin: 0 auto;
font-size: 45px;
margin-bottom: 7em;
}
.section2 .large{
width: 100%;
}
.section2 .large img{
width: 54%;
}
.section2 .end{
color: #ff0000;
font-weight: bold;
font-size: 40px;
text-align: left;
line-height: 1.2;
margin-left: 25%;
}
.section2 .end_le{
margin-left: 9%;
}
.section2 .worriesse_img{
width: 14%;
position:absolute;
top: 68%;
right: 15%;
}
.section2 .worriesse_img img{
width: 100%;
}
.section2 .worries_conclusion{
padding:50px 0 40px;
font-size: 45px;
font-weight: 700;
text-align: center;
line-height: 1.8;
}
.section2 .worriesse p{
margin-bottom: 4em;
font-weight: 900;
}
.section2 .color_b{
color: #5271ff;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.section2 .worriesse{
font-size: 22px;
line-height: 2;
}
.section2 .large img{
width: 70%;
}
.section2 .end{
font-size: 24px;
margin-left: 15%;
}
.section2 .worriesse_img{
width: 12%;
top: 72%;
}
.section2 .worries_conclusion{
padding:50px 0 0;
font-size: 30px;
line-height: 1.8;
}
}
@media screen and (max-width: 767px) {
.section2{
padding: 15px 0 20px;
}
.section2 .worriesse{
font-size: 16px;
line-height: 1.8;
}
.section2 .worriesse_first{
margin: 0 auto;
font-size: 24px;
font-weight: 700;
margin-bottom: 7em;
}

.section2 .large img{
width: 100%;
}
.section2 .end{
font-size: 15px;
margin-left: 5%;
}
.section2 .end_le{
margin-left: 5%;
}
.section2 .worriesse_img{
width: 19%;
position:absolute;
top: 68%;
right: 2%;
}
.section2 .worries_conclusion{
padding:40px 0 30px;
font-size: 20px;
line-height: 1.8;
}
}

.section3{
margin-bottom: 40px;
font-family: serif;
margin-top: 4rem;
}

.section3 .container{
max-width: 1920px;
width: 95%;
margin: 0 auto;
position: relative;
}
.section3 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin: 40px;
}

.section3 .row{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
margin-right: 0;
margin-left:0;
}
.section3 .col{
width:27%;
background: #fff;
height: 610px;
}
.section3 .Streng_img{
margin-bottom: 10px;
}
.section3 .Streng_img img{
width:100%;
}
.section3 .Streng_title{
display: flex;
align-items: center;
justify-content: center;
height: 66px;
}
.section3 h3{
font-size: 24px;
font-weight: 700;
text-align: center;
}
.section3 .Streng_co{
font-size: 18px;
line-height: 1.6;
padding: 10px 20px;
}
.section3 .Streng_bacimg{
position: absolute;
top: -18%;
right: 17%;
z-index: -1;
}
.section3 .Streng_bacimg img{
height: 800px;
opacity: 0.3;
}

@media screen and (max-width: 1024px) and (min-width: 768px){
.section3 h2{
font-size: 25px;
margin-bottom: 20px;
}
.section3 .col{
width:32%;
min-height: 472px;
height: 100%;
}
.section3 h3{
font-size: 16px;
}
.section3 .Streng_co{
font-size: 14px;
}
.section3 .Streng_bacimg{
display: none;
}
}

@media screen and (max-width: 767px) {
.section3 h2{
font-size: 25px;
margin: 0 0 4rem;
}
.section3 .col{
width:100%;
min-height: 430px;
margin-bottom: 10px;
height: 100%;
}
.section3 h3{
font-size: 18px;
}
.section3 .Streng_co{
font-size: 14px;
}
.section3 .Streng_bacimg{
display: none;
}
}
.section4{
padding: 40px 0;
font-family: serif;
}

.section4 .container{
max-width: 1800px;
width: 95%;
margin: 0 auto;
}
.section4 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
}
.section4 .row{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
margin-right: 0;
margin-left:0;
}
.section4 .col{
width:28%;
background: linear-gradient(#f8ebca, #fff, #f8ebca);
font-size: 24px;
font-weight: 700;
text-align: center;
padding: 15px 0;
margin-bottom: 30px;
}
.section4 p{
font-size: 12px;
display: inline-block;
text-align: left;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.section4 h2{
font-size: 25px;
margin-bottom: 20px;
}
.section4 .col{
font-size: 15px;
padding: 15px 0;
}
}
@media screen and (max-width: 767px) {
.section4 h2{
font-size: 18px;
margin-bottom: 3rem;
}
.section4 .col{
font-size: 12px;
padding: 5px 0;
width:48%;
margin-bottom: 10px;
}
.section4 p{
font-size: 10px;
}
}

.diagnosis{
font-family: serif;
padding-top:10px;
margin-bottom: 30px;
}
.diagnosis .container{
max-width: 1080px;
width: 90%;
margin: 0 auto;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
}
.diagnosis .buttonone{
position: relative;
width:48%;
text-align: center;
padding: 30px 10px 20px;
font-family: monospace;
border-radius: 15px;
}
.diagnosis .light-box{
position: fixed;
max-width: 768px;
max-height: calc(100% - 16px * 2);
inset: 0;
margin: auto;
background: #fff;
padding 16px;
}

.diagnosis .light-box::backdrop{
background: rgba(0, 0, 0, 0.2)
}

.diagnosis .light-box_button{
cursor: pointer;
display: block;
width: fit-content;
margin: 20px auto;
padding: 6px 32px;
text-align: center;
font-size: 16px;
background: #fff;
color: #333;
border: 1px solid #333;
}

.diagnosis .buttonone_p::after{
position: absolute;
    content: "click";
    display: block;
    top: -10%;
    right: 7px;
    z-index: 1;
    height: 270px;
    max-height: -webkit-fill-available;
    width: 100%;
    border: 3px dashed #000;
    border-radius: 1.2vw;
}
.diagnosis .ren{
background: #efcbde;
}
.diagnosis .ren:hover {
background-color: #ed3195;
color:#fff;
}
.diagnosis .gaispe{
background: #85e0cd;
}
.diagnosis .gaispe:hover {
background-color: #1fd7b1;
color:#fff;
}
.diagnosis .buttonone_p{
font-size: 22px;
}
.light-box{
position: fixed;
max-width: 768px;
max-height: calc(100% - 16px * 2);
inset: 0;
margin: auto;
background: #fff;
padding 16px;
}

.light-box::backdrop{
background: rgba(0, 0, 0, 0.2)
}

.light-box_button{
cursor: pointer;
display: block;
width: fit-content;
margin: 20px auto;
padding: 6px 32px;
text-align: center;
font-size: 16px;
background: #fff;
color: #333;
border: 1px solid #333;
}

.diagnosis .conta{
position: relative;
width: 700px;
margin: 0 auto;
padding: 30px;
background-color:#fff;
}
.diagnosis h3{
font-size: 30px;
font-weight: 700;
line-height: 1.3;
text-align: center;
margin: 20px 0;
}
.diagnosis .sin {
font-size: 40px;
font-weight: 700;
line-height: 1.3;
padding: 20px 0 20px 15%;
text-align: left;
width: 100%;
color: #3657B6;
margin:0;
}

.diagnosis .result_theme{
width: 100%;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
margin-right: 0;
margin-left:0;
}
.diagnosis h4{
font-size: 50px;
font-weight: 700;
line-height: 1.3;
padding-left: 8%;
text-align: left;
width: 100%;
}
.diagnosis .col1{
width: 60%;
}
.diagnosis .gazou{
width: 40%;
display: flex;
align-items: center;
justify-content: center;
}
.diagnosis img{
width: 100%;
}
.diagnosis .mote{
list-style: none;
margin-top: 20px;
width: 90%;
color: #947a68;
}
.diagnosis .mote_li{
display: flex;
align-items: center;
font-size: 30px;
font-weight: 700;
margin-bottom: 30px;
}

.diagnosis .mote_li::before{
 content: "⚫︎";
 color: #8e9fd0;
 font-size: 20px;
 margin-right: 1em;
}
.diagnosis .answr_co{
position: relative;
width: 75%;
font-size: 16px;
color: #3657b6;
padding: 15px 30px;
background-color: #fff;
border-radius: 50VW;
border: solid;
text-align: center;
margin: 0 30px 0 auto;
font-weight: 600;
}
.diagnosis .answr_co::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #3657b6 transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
.diagnosis .answr_co::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9%;
  border-style: solid;
  border-width: 18.2px 18.2px 0 0;
  border-color: #fff transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
.diagnosis .btn_toi{
width: 100%;
font-size: 35px;
font-weight: 600;
color: #fff;
background-color: #3657b6;
position: absolute;
bottom: 0;
height: 100px;
padding-left: 60px;
}
.diagnosis .btn_gazou{
position: absolute;
bottom: 0;
left: 0;
z-index: 1;
width: 30%;
}
.diagnosis .btn_gazou img{
width: 100%;
}
.diagnosis a{
color: #fff;
}
.diagnosis .score{
text-align: center;
line-height: 1.5;
font-size: 18px;
}

.start,
.quiz,
.result {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz{
padding: 0 5px;
}
.btn {
  background-color: #4caf50;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 24px;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
}
.diagnosis button {
  /* background-color: #4caf50; */
  border: none;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font-size: 18px;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  display: block;
}
.answer-buttons button {
border: solid 1px;
}

.btn:hover {
  background-color: #3e8e41;
}
.hide {
  display: none;
}

.question {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.choose_box {
  position: relative;
  width: 100%;
min-height: 550px;
min-width: 550px;
}
 .choose_box p {
  margin-top: 5%;
  margin-bottom: 10%;
    font-size: 20px;
    display: block;
    font-weight: 600;
    text-align: center;
  }
.choose_box li {
  width: 80%;
  margin: 30px auto;
  list-style: none;
}

ul {
  margin: 0 auto;
  padding-left: 0;
}

.choose_box ul li a {
width: 100%;
color: #fff;
display: block;
padding: 10px 20px;
text-align: center;
background-color: #2791d4;
font-weight: 600;
font-size: 16px;
border: 2px solid #2791d4;
text-decoration: none;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}

.choose_box ul li a:hover {
background-color: #fff;
color: #2791d4;
-webkit-transition: 0.7s;
-moz-transition: 0.7s;
-o-transition: 0.7s;
transition: 0.7s;
}

.fit {
position: absolute;
left: 0px;
top: 20px;
width: 100%;
}

.fit p {
margin-top: 5%;
margin-bottom: 10%;
font-size: 18px;
display: block;
font-weight: 600;
text-align: center;
}
.diagnosis .result_mo{
padding: 0 0 30px;
margin-bottom: 30px;
}
.result{
padding: 0 0 30px;
margin-bottom: 30px;
}
.diagnosis .spe{
background-color: #fff7f3;
margin-bottom: 0;
}
.diagnosis .spec{
position: relative;
width: 90%;
font-size: 16px;
padding: 15px 30px;
background-color: #fff;
border-radius: 40px;
border: solid 3px #3657b6;
text-align: center;
font-weight: 600;
margin: 0 10px 120px auto;
}
.diagnosis .spec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #3657b6 transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
.diagnosis .spec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  border-style: solid;
  border-width: 13.2px 14.2px 0 0;
  border-color: #fff transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
.diagnosis .spec_di,
.diagnosis .spec_co{
margin: 10px 20px;
}
.diagnosis .spec_co{
margin-bottom:30px;
}
.diagnosis .spec_co:last-child{
margin-bottom:0;
}
.diagnosis .col2{
width: 75%;
position: relative;
padding-top: 25px;
}
.diagnosis .spec_gazou{
position: absolute;
width: 30%;
top: 2%;
right: 0%;
z-index: 1;
}
.diagnosis .spec_gazou img{
width: 45%;
display: block;
margin: auto;
}
.diagnosis .spec_di{
color: #ff5784;
}
.diagnosis .spec_sin{
padding: 20px 0 0 15%;
}
.diagnosis .s_sin{
font-size: 36px;
font-weight: 700;
line-height: 1.3;
padding-left: 0;
margin-bottom: 60px;
}
.diagnosis .spec_botn{
width: 25%;
}
@media only screen and (max-width: 767px){
.diagnosis{
position: fixed;
bottom: 0;
width: 100%;
z-index: 2;
margin-bottom: 10px;
}
.diagnosis .container{
width: 100%;
}
.diagnosis .buttonone_p{
font-size: 16px;
}
.diagnosis .buttonone_p::after{
font-size: 16px;
width: 98%;
right: 1%;
padding: 3px 0 0;
}
.diagnosis .buttonone {
width: 47%;
font-size: 20px;
padding: 20px 5px 10px;
}
.diagnosis button {
font-size: 14px;
}
.diagnosis .sin{
font-size: 35px;
padding: 20px 0 0px 15%;
}
.diagnosis h4{
font-size: 27px;
}
.diagnosis .mote_li{
font-size: 16px;
margin-bottom: 15px;
}
.diagnosis .answr_co{
width: 100%;
font-size: 12px;
padding: 10px 20px;
margin: 0 auto;
}
.diagnosis .answr_co::before{
left: 30%;
}
.diagnosis .answr_co::after{
left: 30%;
}
.diagnosis .btn_gazou{
width: 33%;
}
.diagnosis .btn_toi{
height: 60px;
font-size: 20px;
}
.result{
margin-bottom: 10px;
}

.diagnosis .conta{
width: 360px;
height:auto;
padding: 30px 5px;
}
.question {
  font-size: 16px;
}
.diagnosis .score{
font-size: 14px;
}
button {
font-size: 14px;
padding: 0.5rem 0.4rem;
}
.choose_box {
min-width: 350px;
min-height: 420px;
}
.choose_box p{
font-size: 18px;
}
.fit p {
font-size: 16px;
}
.choose_box li{
margin: 0px auto;
}
.choose_box ul li a {
font-size: 14px;
padding: 10px 5px;
}
.diagnosis .col2{
width: 100%;
padding-top: 0;
}
.diagnosis .s_sin{
font-size: 25px;
padding-left: 10px;
margin-bottom: 15px;
}
.diagnosis .spec{
width: 95%;
margin: 0 10px 70px auto;
padding: 15px 10px;
}
.diagnosis .spec_di,
.diagnosis .spec_co{
margin: 5px 0 0;
font-size: 14px;
}
.diagnosis .spec_co{
margin-bottom: 15px;
}
.diagnosis .spec::before {
  left: 30%;
}
.diagnosis .spec::after {
  left: 30%;
}
.diagnosis .spe{
margin-bottom: 0;
}
}

.section5{
padding: 40px 0;
font-family: serif;
}

.section5 .container{
position: relative;
max-width: 1080px;
width: 95%;
margin: 0 auto;
overflow: hidden;
}
.section5 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
color: #426157;
}
.section5 .Box-Container {
display: flex;
width: fit-content;
transition: transform 0.3s ease;
transform: translateX(0);
}
.section5 .Box {
flex-shrink: 0;
width: 350px;
height: 585px;
margin-right: 10px;
background-image: url(https://stat.ameba.jp/user_images/20241227/14/choice-one/27/31/p/o1920320915526295614.png);
background-size: 100% auto;
background-repeat: no-repeat;
background-position: top;
}
.section5 .Box_img{
display: flex;
width: 100%;
align-items: center;
justify-content: center;
margin:20px 0 0;
padding-top: 37px;
}
.section5 .Box_img img{
width: 30%;
border-radius: 100%;
margin-right: 10px;
}
.section5 .Box_age{
text-align: center;
font-size: 14px;
}
.section5 .Box_age img{
width: 20%;
}
.section5 .Box_co{
width: 90%;
margin: auto;
padding:  0 15px 40px;
font-size: 14px;
line-height: 1.6;
}
.section5 .Arrow {
position: absolute;
top: 55%;
transform: translateY(-50%);
width: 30px;
height: 30px;
background-color: rgba(0, 0, 0, 0.3);
color: #fff;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.section5 .Arrow.left {
left: 0;
}
.section5 .Arrow.right {
right: 0;
}
.section5 .Hide {
display: none;
}
@media screen and (max-width: 767px) {
.section5 h2{
font-size: 25px;
}}

@media screen and (min-width: 769px) {
.section5 .sp {
display: none;
}
}
.section6{
padding: 40px 0;
font-family: serif;
}

.section6 .container{
position: relative;
max-width: 1700px;
width: 95%;
margin: 0 auto;
}
.section6 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
}
.section6 .row{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
margin-right: 0;
margin-left:0;
}
.section6 .col{
width: 30%;
}
.section6 .col:nth-child(3){
margin-top: 15%;
}
.section6 .col img{
width: 100%;
}
.section6 h3{
font-size: 35px;
font-weight: 700;
letter-spacing:5px;
}
.section6 .small{
font-size: 18px;
}
.section6 .counselor_age{
font-size: 18px;
margin: 30px 0;
line-height: 1.5;
}
.section6 .counselor_co p{
margin-bottom:2rem;
}
.section6 h4{
padding: 10px;
border-top: dashed 1px;
border-bottom: dashed 1px;
background-color: #f0f8ff;
}
.section6 .counselor_license{
padding: 10px 0 10px 10px;
font-size: 13px;
display: flex;
justify-content: space-between;
line-height: 1.5;
}
.section6 .counselor_skill{
display: flex;
flex-wrap: wrap;
width: 47%;
line-height: 1.5;
}
.section6 .counselor_po{
display: flex;
width: 100%;
}
.section6 .counselor_po p{
width: 50%;
}
.section6 .counselor_img{
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.section6 .counselor_skill img{
width: 100%;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.section6 .col{
width: 53%;
margin-bottom:1rem;
}
.section6 .col:nth-child(2),
.section6 .col:nth-child(3){
width: 50%;
}
.section6 .counselor{
display: flex;
justify-content: space-evenly;
width: 700px;
margin: 0 auto;
margin-bottom:3rem;
}
.section6 .counselor_age{
margin: 0;
}
}
@media screen and (max-width: 767px) {
.section6 h2{
font-size: 25px;
}
.section6 .col{
width: 100%;
margin-bottom:1rem;
}
.section6 .col:nth-child(3){
margin-top: 10px;
}
.section6 .counselor{
width: 70%;
margin: 0 auto 3rem;
text-align: center;
}
.section6 .col img{
width: 70%;
margin: 0 auto;
display: block;
}
.section6 h3{
font-size: 24px;
}
.section6 .small{
font-size: 12px;
}
.section6 .counselor_age{
font-size: 14px;
margin: 0;
line-height: 1.2;
}
.section6 .counselor_co p{
margin-bottom:10px;
}

}

.section7{
padding: 40px 0;
font-family: serif;
}

.section7 .container{
max-width: 1350px;
width: 95%;
margin: 0 auto;
}
.section7 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
color: #2e425d;
}
.section7 .row{
align-items: center;
margin-right: 0;
margin-left:0;
}
.section7 .col{
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
background-color: #fff;
border-radius: 1.2vw;
border: solid 1px;
font-size: 20px;
margin-bottom: 4rem;
}
.section7 .col:after{
position: absolute;
content: "";
display: block;
background-color: #fff;
top: 5%;
right: -1%;
z-index: -1;
height: 100%;
width: 100%;
border: solid 1px;
border-radius: 1.2vw;
}
.section7 .plan,
.section7 .plan_sab{
width: 100%;
}
.section7 .plan{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
border-bottom: dotted 2px;
border-radius: 1.2vw 1.2vw 0 0;
}
.section7 .item1{
background: #def6f4;
}
.section7 .item2{
background: #f9e6f3;
}
.section7 .item3 {
background: #f9f6e3;
}
.section7 h3{
font-size: 30px;
font-weight: 700;
color: #6ac3ba;
width: 25%;
text-shadow: 3px 1px 2px #9ce6df;
}
.section7 .standard{
color: #e487af;
text-shadow: 3px 1px 2px #f2b8d2;
}
.section7 .premium{
color: #bb8d54;
text-shadow: 3px 1px 2px #d5b460;
}

.section7 .plan_money{
width: 50%;
font-size: 25px;
align-items: center;
display: flex
}
.section7 .plan_ho{
width: 20%;
font-weight: 900;
text-align: right;
}
.section7 .plan_box{
background-color: #2e425d;
color: #fff;
font-size: 16px;
width: 15%;
padding: 5px 10px;
border-radius: 1vh;
text-align: center;
margin-right: 20px;
}
.section7 .sab{
margin-left: 45px;
}
.section7 .plan_sab{
padding: 20px 55px;
font-weight: 900;
}
.section7 .plan_iti{
text-align: center;
font-size: 14px;
}

@media screen and (max-width: 1024px) and (min-width: 768px){
.section7 h3{
font-size: 18px;
}
.section7 .col{
font-size: 16px;
}
.section7 .col:after{
right: -2%;
}
.section7 .plan{
padding: 16px;
}
.section7 .plan_money{
font-size: 22px;
}
.section7 .plan_ho{
width: 24%;
}
.section7 .plan_sab{
font-size: 16px;
padding: 20px 20px;
}
.section7 .plan_box{
font-size: 14px;
width: 18%;
padding: 5px 0;
margin-right: 10px;
}
.section7 .sab{
margin-left: 15px;
}
}
@media screen and (max-width: 767px) {
.section7 h3{
width: 100%;
font-size: 20px;
text-align: center;
margin-bottom: 10px;
}
.section7 .col{
font-size: 14px;
right: 1%;
}
.section7 .col:after{
right: -2%;
height: 97%;
}
.section7 .plan{
padding: 10px;
}
.section7 .plan_money{
font-size: 18px;
width: 100%;
margin-bottom: 10px;
}
.section7 .plan_ho{
width: 100%;
}
.section7 .plan_sab{
font-size: 14px;
padding: 10px 5px;
}
.section7 .plan_box{
font-size: 12px;
width: 20%;
padding: 5px 0;
margin-right: 10px;
}
.section7 .sab{
margin-left: 15px;
}

}



.section8{
padding-top: 10px;
margin-bottom: 30px;
font-family: serif;
}
.section8 .container{
max-width: 1280px;
width: 95%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 auto;
}
.section8 .blog,
.section8 .notice{
width: 49%;
}

.section8 h2{
font-size: 30px;
font-weight: 700;
line-height: 1.3;
text-align: center;
}
.section8 hr{
border: solid 2px #2cb67d;
margin: 0 auto 20px;
width: 60px;
}
.section8 .row{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
}

.section8 .col{
width:100%;
padding: 20px 0 10px;
position:relative;
border: 2px solid #666;
margin-bottom: 13px;
display: flex;
background-color: #fff
}

.section8 h3{
font-size: 14px;
font-weight: 700;
padding: 0 0 10px;
}
.section8 .box1 .box-title {
background-color:#fff;
font-size: 18px;
font-weight:800;
color: #666;
padding: 0 5px;
line-height: 1;
position:absolute;
top: -10px;
left: 20px;
}

.section8 .gazo{
width:35%;
margin: 0 auto;
padding:5px;
display: flex;
align-items: center;
justify-content: center;
}
.section8 .blo{
width:60%;
display: flex;
align-items: center;
justify-content: center;
}
.section8 .blo_min{
width:100%;
}
.section8 .blog_title{
display: flex;
align-items: center;
justify-content: center;
height: 75px;
}

.section8 .title{
line-height: 1.5;
text-align: center;
font-size: 15px;
}

.section8 .toi {
display: block;
text-align: center;
text-decoration: none;
font-weight: bold;
color: #fff;
border-radius: 10px;
transition: 0.5s;
padding: 5px;
margin: 10px auto 0;
width:40%;
}
.section8 .hoka{
margin-top: 10px;
}
.section8 .info dd,
.section8 .info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em;
}

.section8 .info dt {
  font-style: normal;
  font-weight: normal;
 font-size:16px;
}

.section8 .info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40;
}
.section8 .info dt time {
  margin-right: .5em;
}

.section8 .info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center;
}
.section8 .info time {
  color: #000000;
}

.section8 .info a {
  color: #0000ff;
}

.section8 .info dd {
margin-left: 0;
margin-bottom: .5em;
border-bottom: 1px dotted #343a40;
font-size:15px;
line-height: 1.4;
}

.section8 .info{
height: 570px;
overflow-y: scroll;
margin-bottom: 30px;
border: solid 1px;
background-color: #fff;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.section8 .info{
max-height: 474px;
}
.section8 .title{
font-size: 13px;
width: 100%;
}
.section8 .hoka{
margin-top: 10px;
width:70%;
}
.section8 .toi {
width:80%;
margin: 5px auto 0;
}
}
@media screen and (max-width: 767px){
.section8{
margin-bottom: 10px;
}
.section8 .blog,
.section8 .notice{
width: 100%;
}
.section8 h2{
font-size: 25px;
}
.section8 .blo{
width: 70%;   
}
.section8 .box1 .box-title {
font-size: 14px;
top: -5px;
}
.section8 .blog_title{
height: 55px;
}
.section8 .title{
font-size: 12px;
width: 100%;
}
.section8 .hoka{
margin-top: 10px;
width:70%;
}
.section8 .toi {
width:80%;
margin: 5px auto 0;
}
.section8 .notice{
margin-top: 20px;
}
.section8 .info{
height: 80px;
margin-bottom: 10px;
}
.section8 .info dd,
.section8 .info dt {
 font-size:12px;
}
}






.section9{
padding-top: 10px;
margin-bottom: 30px;
font-family: serif;
}

.section9 .container{
max-width: 740px;
width: 95%;
margin: 0 auto;
}
.section9 h2{
font-size: 35px;
font-weight: 700;
text-align: center;
margin-top: 20px;
}
.section9 hr{
border: solid 2px #2cb67d;
margin: 0 auto 40px;
width: 60px;
}

.details {
border-top: 2px solid #000;
border-left: 2px solid #000;
border-right: 2px solid #000;
&:last-of-type {
border-bottom: 2px solid #000;
} 
}
.details-summary {
position: relative;
display: block;
padding: 10px 20px;
color: #000;
font-size: 24px;
font-weight: bold;
&:hover {
cursor: pointer;
opacity: 0.8;
}
.details-summary_btn {
position: absolute;
top: 37%;
right: 10%;
width: 18px;
height: 18px;
transform-origin: center center;
transition-duration: 0.2s;

&:before,
&:after {
content: "";
background-color: #000;
border-radius: 10px;
width: 18px;
height: 4px;
position: absolute;
top: 7px;
left: 0;
transform-origin: center center;
}
&:before {
width: 4px;
height: 18px;
top: 0;
left: 7px;
}
}
&.is-active {
.details-summary_btn {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
&:before {
content: none;
}	
}
}
}

.details-summary::-webkit-details-marker {
display: none;
}

.details-content {
position: relative;
padding:  20px 20px 20px 40px;
background-color: #fff;
p {
margin: 0 0 20px;
color: #000;
font-size: 18px;
text-align: left;
&:last-of-type {
margin: 0 0 0;
}
}
}
.section9 .que{
font-family: serif;
font-size: 1.7em;
padding-right: 0.5em;
color: #84c1ff;
}
.section9 .details-content::before {
font-family: serif;
font-size: 1.7em;
position: absolute;
margin: -5px 0 0 -1em;
padding: 0;
content: 'A';
color: #ff0000;
}
.section9 .ps{
text-align: center;
font-size: 14px;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
.section9{
margin-bottom: 30px;
}
.section9 h2 {
font-size: 22px;/*22px*/
margin-top: 0;
}
.section9 hr{
margin: 0 auto 20px;
}
.details-summary {
.btn {
top: 25%;
right: 2%;
}
}
.section9 .que{
padding-right: 3px;
}
.section9 .details-summary{
padding: 5px 0 5px 5px;
font-size: 12px;
}
.section9 .details-content p
{
font-size: 12px;
}

}
.section10{
padding: 20px 0;
font-family: serif;
}
.section10 .container{
max-width: 1080px;
width: 90%;
margin: 0 auto;
}
.section10 h2{
font-size: 22px;
font-weight: 700;
text-align: center;
margin-bottom: 10px;
}

.section10 a.toi {
display: block;
text-align: center;
width: 40%;
padding: 10px 5px;
font-size: 20px;
font-weight: bold;
border: 2px solid #1bcca9;
background: #1bcca9;
color: #fff;
border-radius: 100vh;
transition: 0.5s;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.section10 h2{
font-size: 18px;
}
.section10 a.toi {
width: 70%;
font-size: 15px;
}
}

.footer {
 color: #808080;
font-family: serif;
}

.footer .wrap {
 max-width: 1280px;
 width: 90%;
 margin: 0 auto;
 display: flex;
 flex-wrap: wrap;
justify-content: space-around;
}
.footer .wrap .box:first-child,
.footer .wrap .box:nth-child(2) {
 width: 28%;
}
.footer .wrap .box:nth-child(3) {
 width: 40%;
}
.footer .gazou{
 width: 90%;
margin-bottom: 20px;
}
.footer img{
 width: 100%;
}
.footer .box .address,
.footer .box p{
font-size: 14px;
margin: 0 0 5px;
}
.footer .footer_menu{
display: flex;
line-height: 1.5;
list-style: none;
margin: 10px 0;
padding-left: 0;
justify-content: center;
}
.footer .footer_menu li{
font-size: 16px;
padding: 0 9px;
border-right: 1px #c4c4c4 solid;
}
.footer .footer_menu li:last-child{
border-right: none;
}
.footer .box_ibj{
width: 100%;
 display: flex;
justify-content: space-evenly;
margin-bottom:10px;
}
.footer .box_ibj .col{
display: flex;
align-items: center;
width: 8%;
}
.footer .box_ibj .col:first-child{
width: 40%; 
}
.footer .row{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.footer .partnership .col{
width: 33%;
font-size: 10px;
}
.footer a{
color: #808080
}
.footer .copyright {
 width: 100%;
 padding: 20px 0 0 0;
text-align:center;
}
.footer .kopi{
font-size: 12px;
}
.footer a:hover {
 text-decoration: underline;
}
@media screen and (max-width: 1024px) and (min-width: 768px){
.footer .wrap .box:first-child,
.footer .wrap .box:nth-child(2){
 width: 50%;
}
.footer .wrap .box:nth-child(3){
width: 75%;
}
}
@media only screen and (max-width: 767px) {
.footer {
margin-bottom: 90px;
}
.footer .wrap .box:first-child,
.footer .wrap .box:nth-child(2), 
.footer .wrap .box:nth-child(3){
 width: 100%;
}
.footer .box_ibj{
width: 100%;
 display: flex;
justify-content: space-between;
margin-bottom:10px;
}
.footer .gazou{
 width: 100%;
margin-bottom: 0;
}
.footer .box_ibj .col{
width: 9%;
margin-right: 0;
}
.footer .box_ibj .col:first-child{
width: 50%; 
}
.footer .footer_menu{
line-height: 1.8;
}
.footer .footer_menu li{
font-size: 12px;
padding: 0 2px;
}
}