@charset "UTF-8";


html {
    font-size: 62.5%;
    overflow-x: hidden;
    font-family: 'Hiragino Kaku Gothic ProN', Meiryo, 'sans-serif';
    scroll-behavior: smooth;
}

body {
    font-size: 1.5rem;
    overflow: hidden;
}
li{
    list-style: none;
}
p, span{
    line-height: 1.5;
    text-align: justify;
}
a{
    text-decoration: none;
    color: #000;
}
.a:focus {
  outline: 3px solid #ffcc00;
}
img{
    object-fit: contain;
	width: 100%;
}
.center{
    text-align: center;
}
.anchor{
  padding-top:100px;
  margin-top:-100px;
}
.pc__display{
    display: block;
}
.sp__display{
    display: none;
}
@media screen and (max-width: 500px) {
    .pc__display{
        display: none;
    }
    .sp__display{
        display: block;
    }
}

body, html {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}



/* ヘッダー ここから */
.header__container{
	position: fixed;
	width: 100%;
    display: flex;
    align-items: center;
    height: 80px;
    background-color: #fff;
}
.header__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
	padding: 0px 40px;
}

.header__logo--container {
    display: flex;
    flex-direction: column;
    width: 206px;
}
.header__logo-link{
    width: 100%;
}
.header__menu--group {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.header__menu--link{
    display: flex;
    align-items: center;
    height: 22px;
    margin: 0 0 0 16px;
    font-weight: 600;
    padding-right: 16px;
}
.header__menu--link:last-child{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.header__menu--link:hover{
    color: #3451A1;
    transition: color 0.3s;
    text-decoration:underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(52, 81, 161, 0.5);
}
.header__menu--btn{
    position: relative;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top left, #00AF9B, #567DBC);
    width: 145px;
    height: 44px;
    border-radius: 6px;
    transition: all 0.5s ease;
    transition: 1s;
}
.header__menu--btn{
    display: flex;
    width: 145px;
    height: 44px;
    border-radius: 6px;
}
.header__menu--btn{
    transform: translate(0%, 0%);
    margin: 0;
}

.header__menu--txt{
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}
.header__menu--icon{
    width: 19px;
    height: 19px;
    background-image: url("../img/header__menu--icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    transition: background-image 0.5s ease;
    margin-left: 14px;
}
.header__menu--link-icon{
    width: 18px;
    margin-left: 8px;
}

.header__menu--btn .bg{
	position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
	border-radius: 6px;
  background-color: #fff;
  transition: width 0.4s ease;
  z-index: -1;
}
.header__menu--btn:hover .bg {
  width: 100%;
  left: 0;
  right: auto;
}

/* ホバー時のスタイル */
.header__menu--btn:hover {
    border: 3px solid #00AF9B;
    background: #fff;
    transition: background 0.5s ease;
}

/* ホバー時のアイコン変更 */
.header__menu--btn:hover .header__menu--icon {
    background-image: url("../img/header__menu--icon-hover.png");
    transition: background-image 0.5s ease;
}

/* ホバー時のリンクカラー変更 */
.header__menu--btn:hover .header__menu--txt {
    color: #000;
    transition: color 0.5s ease;
}


@keyframes anime{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.4); opacity:0}
}



.info__email--link {
    color: #fff;
    font-size: 2.5rem;
    transition: color 0.3s ease; /* スムーズな変化を追加 */
}

/* ハンバーガーメニュー */
.header__hamburger--container {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.header__hamburger--container span {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.6s ease;
}

.header__mobile--container{
    display: none;
}
.header__font-size--container{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 22px;
}
.header__font-size--txt{
    font-weight: 600;
    margin-right: 6px;
}
.header__font-size--container button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 2px;
    color: #000;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    cursor: pointer;
}
#font-small{
    font-size: 12px;
}
#font-medium{
    font-size: 14px;
}
#font-large{
    font-size: 18px;
}
.header__font-size--selected{
    background-color: #000!important;
    color: #fff!important;
}


@media screen and (max-width: 1240px) {
    .header__group{
        width: -webkit-fill-available;
        margin: 0 20px;
    }
    .header__logo {
        width: 180px;
    }
}
@media screen and (max-width: 1080px) {
  .header__menu--container {
    display: none;
  }

    .header__hamburger--container {
        position: relative;
        z-index: 99;
        display: flex;
    }
    .header__mobile--container {
        display: none;
        position: fixed; /* ← absoluteから変更 */
        z-index: 9999;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(to bottom, #37628D, #204098);
        color: #fff;
    }
    .header__mobile--group {
        width: 100%;
        margin: 0 32px 200px;
    }
    .header__mobile--section {
        display: flex;
        flex-direction: column;
    }
    .header__mobile--section:first-child {
        border-top: 1px solid #fff;
    }
    .header__mobile--link {
        font-size: 1.8rem;
        color: #fff;
        padding: 20px 0;
        border-bottom: solid 1px #fff;
    }
    .header__hamburger--container span{
        background-color :#000
    }
    .header__menu--btn{
        margin-top: 40px;
    }

    /* ハンバーガーがアクティブになったときのスタイル */
    .hamburger.active span{
        background-color: #000;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px) translateX(5px)
    }
    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateX(8px) translateY(-10px)
    }
    .header__mobile--container.active {
        display: flex;
        top: 80px;
        align-items: center;
        height: calc(100vh + 88px);
    }
    .header__menu--btn:before {
      animation: none
    }

    .header__menu--btn:after {
        animation: none;
        background: linear-gradient(to top left, #00AF9B, #567DBC);
    }
}

@media screen and (max-width: 500px) {
    .header__group {
        padding: 0;
    }
    .header__logo {
        width: 140px;
    }
}
/* ヘッダー ここまで */



/* フッター ここから */
.footer__container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
.footer__pdf--btn{
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px #204098;
    border-radius: 9px;
    width: 372px;
    height: 56px;
    margin-bottom: 14px;
}
.footer__pdf--btn:hover{
    background-color: #204098;
    transition: background-color 0.3s ease;
}
.footer__pdf--btn:hover .footer__pdf--txt {
    color: #fff;
}
.footer__pdf--icon{
    width: 22px;
    margin-right: 10px;
}
.footer__pdf--txt{
    font-size: 1.8rem;
    font-weight: 600;
}
.footer__note{
    font-size: 1.2rem;
}
@media screen and (max-width: 400px) {
    .footer__container{
        padding: 20px 20px 92px;
    }
    .footer__pdf--btn{
        width: -webkit-fill-available;
    }
}
/* フッター ここまで */













