/*
Theme Name: Career
Author: Career
Requires at least: WordPress 5.0
Tested up to: WordPress 6.4
Requires PHP: 7.0
Version: 1.0
*/

@charset "utf-8";

/* ==================================================
   Base Styles
   ================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --main: #369FDA;
    --sub: #006299;
    --str: #E18700;
    --grn: #419856;
    --link: #005788;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    color: #000;
    display: flex;
}

img {
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: .6;
}

ul {
    padding: 0;
    list-style: none;
}

.respons {
    display: none;
}

.tab{
    display: none;
}

.sp {
    display: none;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}


/* SEO用 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}



/* ==================================================
   Common Styles
   ================================================== */

/* 各種ボタンスタイル  ボタンスタイルはブロックエディタに追加*/
.btn {
    display: inline-block;
    position: relative;
    text-align: center;
}

.btn--pry {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 28rem;
    line-height: 5rem;
    margin: auto;
    font-weight: 700;
    border: 2px solid var(--main);
    background: var(--main);
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.8rem;
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.btn--pry::after {
    content: "\e5cc";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--main);
    background-color: #fff;
    font-family: 'Material Icons';
    font-size: 1.5rem;
    border: 1px solid #fff; 
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn--pry:hover {
    background: #FF8C04;
    border: 2px solid #FF8C04;
    opacity: 1;
}

.btn--pry:hover::after {
    color: #FF8C04;
}

.btn__saide {
    width: 31rem;
    color: #fff;
    height: 8rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn__saide::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 4px solid #fff;
    pointer-events: none;
}

.btn__saide::before {
    content: "\e89e";
    font-family: 'Material Icons';
    display: inline-block;
    font-size: 2.8rem;
    color: #fff; 
    font-weight: normal;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.btn__saide span{
    display: inline-block;
    position: relative;
}

.btn__saide span::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 350%;
    background-color: #fff;
    top: -2.8rem;
    left: -2.2rem;
    transform: rotate(30deg);
}

.btn__saide span::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 350%;
    background-color: #fff;
    top: -2.8rem;
    right: -2.3rem;
    transform: rotate(30deg);
}

.btn__saide--org{
    background-color: var(--str);
}

.btn__saide--grn{
    background-color: #399F49;
}

.btn__saide--blue{
    background-color: var(--main);

}


/* ==================================================
   Sidebar Styles
   ================================================== */
.sidebar {
    position: fixed;
    width: 33rem;
    height: 100vh;
    box-shadow: 4px 0 3px rgba(0, 0, 0, 0.25);
    z-index: 10;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.sidebar__heading,
.sidebar__logo-container {
    padding: 1rem 2rem;
    text-align: center;
    margin: 0.2rem auto;
}

.sidebar__logo-container {
    width: 19rem;
    height: 9.2rem;
}

.sidebar__subtitle,
.sidebar__main-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.sidebar__main-title {
    font-size: 2.6rem;
}

.sidebar__subtitle {
    position: relative;
    display: inline-block;
    padding: 0 10rem;
}

.sidebar__subtitle:before,
.sidebar__subtitle:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 9.5rem;
    height: 1px;
    background-color: var(--main);
}

.sidebar__subtitle:before { left: 0; }
.sidebar__subtitle:after { right: 0; }


.sidebar__courses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin: .7rem 0;
}

.sidebar__course {
    padding: .2rem 1.5rem .2rem 1.5rem;
    border: 1px solid #000;
    font-size: 1.7rem;
}

.sidebar__course--bule {
    border: 1px solid var(--main);
    color: var(--main);
}

.sidebar__course--green {
    border: 1px solid var(--grn);
    color: #419856;
}

.sidebar__link-home {
    color: #0069AF;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 0 1.1rem;
}

.sidebar__menu{
    overflow-y: auto; 
    flex-grow: 1;
}

.sidebar__menu-items {
    margin: .8rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.sidebar__menu-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    width: 30.6rem;
    background-color: var(--main);
    color: #fff;
    font-weight: 700;
    line-height: 3.7rem;
    border-radius: 0px 25px 25px 0px;
    padding: 0 1rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sidebar__menu-link::after {
    font-family: "Material Icons";
    content: "\e5e1";
    margin-right: 0rem;
    font-weight: 900;
}

.sidebar__menu-link:hover {
    opacity: 1;
    background-color: #FF8C04;
}

.sub-menu{
    padding: 1.2rem 1.2rem 0rem 1.2rem;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    gap: .4rem;
}

.sidebar__submenu {
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar__submenu-item {
    color: #0D0D0D;
    font-size: 1.5rem;
    font-weight: 700;
}

.sidebar__submenu{
    padding: 1.2rem 1.2rem 0rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sidebar__submenu-link{
    display: flex;
    align-items: center;
    gap: .2rem;
}

.sidebar__submenu-link::before {
    content: url('./img/icon/check.svg');
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .6rem;
    vertical-align: middle;
}

.sidebar__btn-container{
    margin: 1rem auto 2rem auto;
}


/* ==================================================
   Main Styles
   ================================================== */
#main{
    margin-left: 33rem;
    width: 100%;
}

/* ==================================================
   Footer Styles
   ================================================== */
#footer {
    background-color: var(--main); 
    color: #fff;
    padding: 2rem 0 1rem 0;
}

.footer__inner {
    position: relative; 
    width:100%;
    margin-left:33rem;
    padding: 2rem 1rem;
}

.footer__logo-container {
    width: 46rem;
}

.footer__nav{
    padding: 3rem 0 1rem 0;
    display: flex;
    justify-content: space-around;
}

.footer__nav-list{
    margin: 0;
    margin-right: 2rem;
}

.footer__nav-list .menu-item {
    margin: .2rem 1rem 1rem 1rem;
    display: block;
    align-items: center;
    flex-wrap: wrap;
}

.footer__nav-list .menu-item::before {
	font-family: "Material Icons";
	content: "\e5e1";
    margin-right: 0.5rem;
    font-weight: 900; 
    vertical-align: middle;
}

.footer__nav-list .sub-menu{
    margin-left: 5.5rem;
}

.footer__nav-list .sub-menu .menu-item{
    display: flex;
    align-items: center;
    line-height: 200%;
    margin-bottom: 0;
}

.footer__nav-list .sub-menu .menu-item::before{
    content: "\e5df";
    font-size: 2.5rem;
}

.footer__nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
}

.footer__contact {
    position: absolute;
    right: 2rem;
    bottom: 2.5rem;
    width: 13.2rem;
    height: 13.2rem;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.footer__elboshi-img {
    width: auto;
    height: 3rem;
}

.footer__copy{
    width: 93%;
    margin: 0 auto;
    border-top: 1px solid #fff;
}

.footer__copy p{
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 1.5rem 0;
}

/* ==================================================
   サイドバー関連
   ================================================== */
 /* サイドバーは通常時は画面買いに格納 */
.sidebar-toggle{
    padding-top: 7rem;
    background: #fff;
    position: fixed;
    width: 33rem;
    height: 100vh;
    top: 0;
    left: -100%;
    transition: left 0.3s ease;
    box-shadow: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.sidebar-toggle .sidebar__menu{
    overflow-y: auto; 
    flex-grow: 1;
}

.sidebar-toggle.open{
    left: 0;
}

.haeder__hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.haeder__hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.haeder__hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.sidebar-toggle.open + .overlay {
    display: block;
}

/* サイドバー出てるときはヘッダーのshadowをきる */
#header.header-no-shadow {
    box-shadow: none;
}


/* ==================================================
   プライバシーポリシー
   ================================================== */

#main-body.privacy-policy{
    max-width: 100rem;
    margin: 8rem auto;
}

#main-body.privacy-policy h2{
    margin-top: 6rem;
    color: #000;
    text-align: left;
}

#main-body.privacy-policy h2::before{
    display: none;
}

#main-body.privacy-policy a{
    text-decoration: underline;
    color: var(--link);
}


/* ==================================================
   add code
   ================================================== */
.update-apply-footer__container-no-event{
  text-align:center;
  font-size: 2.5rem;
  font-weight:700;
}

.update-apply-body__item{
     overflow-x: auto;
}

.update-apply-body__item-table2 th{
  min-width:8rem;
}