/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 100%;
    scroll-behavior: smooth;
  scroll-padding-top: 80px;
      color-scheme: light;
}

body {
    font-family: "Noto Sans JP","Hiragino Sans","Yu Gothic", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
	--icon-width: 3px;
	--icon-color: #cc0033;
    --bg-pink: #fde7e7;
    --bg-blue: #e1f5fe;
    --arrow-color: #cc0033;
    --border-color: #333;

}

img {
    max-width: 1000%;
}

a{
    text-decoration: none;
    color: #4d8acf;
}

ul{
    list-style: none;
}

.bold{
    font-weight: bold;
}

.line{
    text-decoration:underline;
}

/* ヘッダー */
.header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
}

.header-inner-pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-inner-pc a{
    position: relative;
}
.kokyo_box{
    text-align: right;
}
.btn_kokyo{
    display: inline-block;
    background-color: #022693;
    padding: 2px 10px;
    color: #fff;
    font-size: 10px;
}
/* .header-inner-pc a::before {
    content: "";
    position: absolute;
    top: calc(50% - 2.5px);
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(/img/common/icon_arrow-down.png) no-repeat center / contain;
} */
.header-inner-pc a.icon-arrow-bottom::before {
    content: "";
    position: absolute;
    top: calc(50% - 5.5px);
    top: 8px;
    left: -10px;
    right: 0px;
	display: inline-block;
	box-sizing: border-box;
	width: 6px;
    height: 6px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: var(--icon-color);
	transform: rotate(135deg);
}

.header-inner-sp{
   display: none;
}

.logo_box img{
    width: 200px;
}
@media (max-width: 840px) {
    .logo_box img{
    width: 160px;
    }
}

.header-spacer-pc {
    height: 80px; /* ヘッダーの高さと同じに設定 */
}

.header-spacer-sp {
    display: none;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: bold;
}
.big-tx{
    font-weight: bold;
    font-size: 19px;
}

/* スマホ対応：ナビを非表示にするか調整 */
@media (max-width: 768px) {
    .header{
        height: 70px;
        padding: 3px 0;
    }
    /* .header-inner-pc {
        flex-wrap: wrap;
    }
    .header-spacer {
        height: 100px;
    } */
    /* .logo_box{
        margin: 0 auto;
    } */
    .logo_box img{
    width: 150px;
    }
    .nav{
        margin: 0 auto;
    }

    .header-inner-pc{
        display: none;
    }
    .header-spacer-pc{
        display: none;
    }
    .header-inner-sp{
        display: block;
        width: 100%;
    }
    .header-spacer-sp{
        display: block;
        height: 70px;
    }
    .header_box {
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        }
        .logo {
        font-weight: 700;
        padding-left: 14px;
        }
        .hamburger-menu {
        width: 50px;
        height: 70px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
        }
        .hamburger-menu__bar {
        display: inline-block;
        width: 44%;
        height: 2px;
        background: #242424;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
        }
        .hamburger-menu__bar:first-child {
        top: 16px;
        }
        .hamburger-menu__bar:nth-child(2) {
        top: 24px;
        }
        .hamburger-menu__bar:last-child {
        top: 32px;
        }
        .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
        }
        .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        }
        .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
        }
        .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
        }
        .navigation {
        display: none;
        background: #cc0033;
        position: absolute;
        top: 70px;
        width: 100%;
        z-index: 9999;
        }
        .navigation__list {
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
        }
        .navigation__list-item {
        border-bottom: solid 1px #cbd3db;
        }
        .navigation__list-item:first-child {
        border-top: solid 1px #cbd3db;
        }
        .navigation__link {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        display: block;
        padding: 16px 0;
        transition: .5s;
        }
        .header-inner-sp .navigation__link.app {
        background: #ef8011;
        border-radius: 5px;
        width: 90%;
        margin: 10px auto;
        }
        .header-inner-sp .navigation__link.login {
        background: #1987f5;
        border-radius: 5px;
        width: 90%;
        margin: 10px auto;
        }
        .header-inner-sp .navigation__link.address {
        background: #04d56c;
        border-radius: 5px;
        width: 90%;
        margin: 10px auto;
        }
        @media (hover: hover) and (pointer: fine) {
        .navigation__link:hover {
            background: #df0138;
        }
        }
}


/* contents__main*/

main{
    /*background-color: #ffe9e9;*/
    width: 100%;
    text-align: center;
    /*padding-bottom: 140px;*/

}

.wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 120px;
    background-color: #fff;
    text-align: left;
}

@media (max-width: 768px) {
.wrapper{
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 20px 120px;
    background-color: #fff;
    text-align: left;
    font-size: 1.4em;
}
}


.tama_wrapper{
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 0;
    background-color: #fff;
    text-align: left;
}

@media (max-width: 768px) {
.tama_wrapper{
    max-width: 750px;
    margin: 0 auto;
    padding: 30px 20px 0px;
    background-color: #fff;
    text-align: left;
    font-size: 1.4em;
}
}


.content_process{
    max-width: 980px;
    margin: 0 auto;
}

h1{ 
    font-size: clamp(1.5rem, 1.2rem + 1vw, 1.75rem); 
    font-weight: 800; 
    line-height: 2rem; 
    margin: 0 0 30px; 
    padding-bottom: 5px;
    border-bottom: 4px solid #cc0033;}
h1 span{ font-size: 1.05rem; font-weight: normal;}


.process__tit{
    position: relative;
    margin: 60px 0 40px; 
}
p.process__nbr{
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2.6rem;
    color: #cc0033;
    letter-spacing: 3px;
    font-style: italic;
    display: inline-block;
    transform: scaleX(1.1);
    position: absolute;
    top: -28px;
    left: 10px;
}

h2{ font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
    color:#333; 
    padding-left: 0.2rem;
    padding-top: 1.4rem; 
    padding-bottom: 0.6rem;

   }

h2.marker {
border-top: 1px solid #cc0033;
border-left: 4px solid #cc0033;
}

p{ font-size: 1rem; line-height: 1.8rem;}

.pad_l_1r{
    padding-left: 1rem;
}


.process {
width: 100%;
/*max-width: 900px;*/
margin: 0 auto 100px;
padding-inline: 20px;
display: flex;
gap: 40px;
}

.process__image {
flex: 0 1 45%;
}
.process__image img{
width: 100%;
height: auto;
display: block;
}
.process__content {
flex: 1;
}

.howto_caution ul{
    margin: 20px 10px 10px 0px;
}
.howto_caution li{
    font-size: 14px;
        padding-left: 1em;
text-indent: -1em;
}
.howto_caution li::before{
    content:'※';

}



@media (max-width: 768px) {

p.process__nbr{
    font-family: "Anton", sans-serif;
    font-weight: bolder;
    font-size: 2.6rem;
    color: #cc0033;
    letter-spacing: 1px;
    font-style: italic;
    display: inline-block;
    transform: scaleX(1.0);
    position: absolute;
    top: -28px;
    left: 8px;
}


h2.sp_text{
padding-left: 1em;
text-indent: -0.5em;
padding-top: 14px;
}

p{
    font-size: 0.9rem;
}

.process{
  flex-direction: column;
  margin: 0 auto 50px; 

    }
.process__image {
order: 2;
}
.process__content {
order: 1;
}

}


.caution__3dsecure__wrapper{
    width: 95%;
    margin: 30px auto;
    padding: 10px;
    border: 1px solid #06529e;
    
}

.caution__3dsecure__wrapper > p.tit{
    color:#06529e;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
}

.caution__3dsecure__wrapper > p.txt{
    font-size: 0.8rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
}

.caution__3dsecure__wrapper > p.linktxt{
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-left: 12px;
    /*text-decoration: underline;*/
}

.caution__3dsecure__wrapper > p.linktxt a::before {
    content: "";
    position: absolute;
    top: calc(50% - 5.5px);
    top: 8px;
    left: 0px;
	display: inline-block;
	box-sizing: border-box;
	width: 6px;
    height: 6px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: var(--icon-color);
	transform: rotate(45deg);
}

.caution__3dsecure__wrapper > p.linktxt a:hover{
    color:red;
    text-decoration: underline;
}



/* 多摩大学　お問い合わせ
------------------------*/
.tamauniv_inquiry_wrapper{
display: block;
margin-bottom: 200px;
padding: 0 40px;
}


.tamauniv_inquiry_wrapper .caution_txt{
    font-size: 1.2rem;
    font-weight: 500;
    color: #cc0033;
    margin-bottom: 10px;
    text-align: center;
}

.tamauniv_inquiry_wrapper .contact_wrap{
 padding: 20px;
 background-color: #f1d0d3;
 border-radius: 5px;
 text-align: left;
}

.tamauniv_inquiry_wrapper .caution_tit{
    margin: 0 auto 10px auto;
    border-bottom: 1px solid #666;
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}


.tamauniv_inquiry_wrapper .contacts{
padding: 20px 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;

}

.ta_tel{
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    

}

.ta_tel p{
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;

}


.ta_tel .ta_txt{
    font-size: 1rem;
        margin-left: 4em;
        margin-top: 8px;
    
}

.ta_txt_s{
 font-size: 0.8rem;
 margin-top: 8px;
}

.label-tel{
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-tel::before {
  content: "TEL";
  padding: 2px 8px;
  border-radius: 6px;
  background-color: var(--icon-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}



.ta_web a.ta_web_btn{
    display: block;
    font-size: 1.4rem;
    padding: 12px 8px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid var(--icon-color);
  color: var(--icon-color);
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.3s;
}

.ta_web a.ta_web_btn:hover{
    opacity: 0.7;
}

@media (max-width: 768px) {

.tamauniv_inquiry_wrapper{
display: block;
margin-bottom: 170px;
padding: 0;
}

.tamauniv_inquiry_wrapper .caution_tit{
    margin: 0 auto 10px auto;
    border-bottom: 1px solid #666;
    padding-left: 10px;
    padding-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

.tamauniv_inquiry_wrapper .caution_txt{
    font-size: 1.4rem;
    font-weight: 600;
    color: #cc0033;
    margin-bottom: 20px;
}


.tamauniv_inquiry_wrapper .contact_wrap{
 padding: 20px;
 background-color: #f1d0d3;
 text-align: center;
}

    .tamauniv_inquiry_wrapper .contacts{
    padding-left: 0px;
    padding-right: 0px;
    display: block;
    margin-top: 10px;

}

.ta_tel p{
    font-size: 1.8rem;
    font-weight: bold;

    
}

 .label-tel::before {
  padding: 2px 8px;
  display: inline-block;
  font-size: 1.0rem;
  font-weight: bold;
  margin-right: 5px;
}


.ta_tel a.ta_tel_btn{
    display: block;
    padding: 12px 5px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid var(--icon-color);
  color: var(--icon-color);
  font-size: 1.5rem;
  font-weight: bold;
 }



.ta_web{ margin-top: 20px;}

.ta_txt{ text-align: left; margin-left: 5em;}

.ta_txt_s{
    text-align: left;
}


}




/* CV_area, CV_btn
----------------------------*/
.cv-area {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;

  padding: 25px 20px 60px;
  text-align: center;
  box-sizing: border-box;
  z-index: 10;

  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity .3s ease,
    transform .3s ease,
    bottom .2s linear;
}

.cv-area.show {
  opacity: 1;
  transform: translateY(0);

  background: linear-gradient(
    to top,
    rgba(255,255,255,1) 30%,
    rgba(255,255,255,0) 100%
  );
}

@keyframes slideUp{
  from{
    opacity: 0;
    transform: translateY(100px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bgFade{
  from{
    background: transparent;
  }
  to{
    background: linear-gradient(
      to top,
      rgba(255,255,255,1) 30%,
      rgba(255,255,255,0) 100%
    );
  }
}

.cv-btn {
  display: inline-block;                                                          
  background: #cc0033;
  border: 1px solid #cc0033;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 14px 100px;
  border-radius: 999px;
  font-weight: bold;

  opacity: 0;
  animation: btnUp .4s ease-out .7s forwards;
}

@keyframes btnUp{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.cv-btn:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/*.cv-area:has(.cv-btn:hover){
  box-shadow: 0 -5px 10px rgba(0,0,0,.15);
}
*/
@media (max-width: 768px) {
  .cv-btn {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 14px 25px;
    min-width: 80%;
  }
}





/* page-top
--------------------------- */
#page-top a{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
    z-index: 50;
}

#page-top a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#page-top a:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


@media (max-width: 768px) {
#page-top a{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
  z-index: 50;
}

#page-top a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#page-top a:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
}


/* footer上書き
---------------------------*/
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 0px!important;
    z-index: 20;
}

@media (max-width: 768px) {
  .footer-links{
    flex-direction: column;
        gap: 14px;
}  
  .footer-links > li{
        letter-spacing: 2px;
  }

}




/* バナーエリア */
.ad-section{
    margin: 30px 0 25px 0;
}
.ad_box{
    text-align: center;
}
.ad_box img{
    width: 100%;
    max-width: 610px;
    margin: 0 auto;
    display: inline-block;
}


