/* CSS Document */


.btn_wrap { 
    display: flex;
}
.btn_wrap .btn { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    position: relative;
    z-index: 1;
}
.btn_wrap .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #0A4F7F;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 10rem;
    transition: transform .2s cubic-bezier(0.51, 0.61, 0.465, 1.65) 0s;
}

.btn_wrap .btn span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0A4F7F;
    margin-top: -0.1em;
    transition: all .6s;
}
.btn_wrap .btn .arrow {
    display: flex;
    margin-left: 2rem;
}
.btn_wrap .btn .arrow .arrow_svg .a {
    transition: all .6s;
}

.btn_wrap .btn.none { 
    cursor: auto;
    opacity: 1 !important;
}

.btn_wrap .btn:hover {
    opacity: 1
}
.btn_wrap .btn:hover span {
    color: #FFFFFF;
}
.btn_wrap .btn:hover::after {
    transform:scale(1.03);
    background-color: #0A4F7F;
}

.btn_wrap .btn:hover .arrow .arrow_svg .a {
    fill: #FFFFFF;
}

.btn_wrap .btn.back .arrow {
    transform: scale(-1, 1);
}


.btn_wrap .btn.bg_w::after {
    background-color: #FFFFFF;
}
.btn_wrap .btn.bg_w:hover::after {
    background-color: #0A4F7F;
}

.btn_wrap .btn.bg_b::after {
    background-color: #0A4F7F;
}
.btn_wrap .btn.bg_b:hover::after {
    background-color: #FFFFFF;
}
.btn_wrap .btn.bg_b .arrow .arrow_svg .a {
    fill: #FFFFFF;
}
.btn_wrap .btn.bg_b:hover .arrow .arrow_svg .a {
    fill: #0A4F7F;
}
.btn_wrap .btn.bg_b span {
    color: #FFFFFF;
}
.btn_wrap .btn.bg_b:hover span {
    color: #0A4F7F;
}


@media screen and (max-width: 768px) {
.btn_wrap .btn { 
}
.btn_wrap .btn span {
}
.btn_wrap .btn .arrow {
    margin-left: 1.5rem;
}
}


.img_wrap.h_anim {
    overflow: hidden;
}
.img_wrap.h_anim img {
    -webkit-transition: -webkit-filter 0.4s, -webkit-transform 0.4s;
        transition: -webkit-filter 0.4s, -webkit-transform 0.4s;
        transition: filter 0.4s, transform 0.4s;
        transition: filter 0.4s, transform 0.4s, -webkit-filter 0.4s, -webkit-transform 0.4s;
}
.img_wrap.h_anim img {
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.sec_ttl {
}
.sec_ttl > span {
    display: block;
    text-align: center;
}
.sec_ttl .jp {
    font-size: 3rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
}
.sec_ttl .en {
    font-size: 1.2rem;
    color: #980000;
    margin-top: 1rem;
}
.sec_ttl.size_s .jp {
    font-size: 2rem;
}

.sec_ttl.tate {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-font-feature-settings: 'pkna';
    -webkit-font-feature-settings: 'pkna';
    font-feature-settings: 'pkna';
    white-space: nowrap;
    display: flex;
    flex-flow: column-reverse;
    align-items: flex-start;
}
.sec_ttl.tate .en {
    margin-top: 0;
    margin-left: 1.5rem;
}


.sec_ttl_wrap {
    display: flex;
    flex-flow: column;
}
.sec_ttl_wrap .sec_ttl {
    display: flex;
    flex-flow: column;
    grid-gap: 4rem 0;
}
.sec_ttl_wrap .sec_ttl span.ttl {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: calc(33/18);
    font-weight: 600;
    text-align: center;
}
.sec_ttl_wrap .sec_ttl span.ttl span {
    color: #0A4F7F;
}
.sec_ttl_wrap .sec_ttl.medium span.ttl {
    font-size: 2.0rem;
}
.sec_ttl_wrap .sec_ttl.large span.ttl {
    font-size: 2.6rem;
    /*line-height: calc(48/26);*/
}
.sec_ttl_wrap .sec_ttl span.ttl::after {
    content: '';
    display: block;
    width: 10rem;
    height: 3.8rem;
    background: url("../images/sec_ttl_line.svg") no-repeat center center / contain;
    margin: auto;
    margin-top: 0;
}
.sec_ttl_wrap .lead {
    font-size: 1.5rem;
    line-height: calc(35/15);
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
}

#page_ttl {
    width: 100%;
    aspect-ratio: 1366 / 525;
    /*height: 52.5rem;*/
    position: relative;
    z-index: 1;
    background: url("../images/page_ttl_bg.png") no-repeat center bottom / cover;
}
#page_ttl.ptn2 {
    aspect-ratio: 1366 / 444;
}
#page_ttl .inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
#page_ttl .ttl_wrap {
    display: flex;
    flex-flow: column;
    grid-gap: 2rem 0;
}
#page_ttl .ttl_wrap h1.ttl {
    display: flex;
    flex-flow: column;
    grid-gap: 2rem 0;
}
#page_ttl .ttl_wrap h1.ttl span {
    display: block;
    color: #FFFFFF;
}
#page_ttl .ttl_wrap h1.ttl .jp {
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 600;
}
#page_ttl .ttl_wrap h1.ttl .sub {
    font-size: 1.6rem;
    line-height: calc(33/16);
    letter-spacing: 0.1em;
    font-weight: 500;
}
#page_ttl .lead {
    font-size: 1.4rem;
    line-height: calc(28/14);
    letter-spacing: 0.05em;
    font-weight: 500;
}

#page_ttl .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: calc(30/1366*100%);
    z-index: -1;
}
#page_ttl .bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

#page_ttl.pattern2 {
    padding-top: 16rem;
}
#page_ttl.pattern2 .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
.sec_ttl_wrap .sec_ttl span.ttl {
    font-size: 1.5rem;
}
.sec_ttl_wrap .sec_ttl.medium span.ttl {
    font-size: 1.8rem;
}
.sec_ttl_wrap .sec_ttl.large span.ttl {
    font-size: 1.8rem;
}
.sec_ttl_wrap .lead {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 3rem;
}
    
#page_ttl {
    width: 100%;
    aspect-ratio: 375 / 442;
    /*height: 52.5rem;*/
    position: relative;
    z-index: 1;
    background: none;
}
#page_ttl.ptn2 {
    aspect-ratio: 375 / 442;
}
#page_ttl .inner {
    width: 28rem;
    height: 100%;
    display: flex;
    align-items: center;
}
#page_ttl .ttl_wrap {
    display: flex;
    flex-flow: column;
    grid-gap: 2rem 0;
}
#page_ttl .ttl_wrap h1.ttl {
    display: flex;
    flex-flow: column;
    grid-gap: 1.5rem 0;
}
#page_ttl .ttl_wrap h1.ttl span {
    display: block;
    color: #FFFFFF;
}
#page_ttl .ttl_wrap h1.ttl .jp {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 600;
}
#page_ttl .ttl_wrap h1.ttl .sub {
    font-size: 1.4rem;
}
#page_ttl .lead {
    font-size: 1.4rem;
    line-height: calc(28/14);
    letter-spacing: 0.05em;
    font-weight: 500;
}

#page_ttl .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    z-index: -1;
}
#page_ttl .bg_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

#page_ttl.pattern2 {
    padding-top: 16rem;
}
#page_ttl.pattern2 .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
}



.infotable {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: calc(35 / 16);
    font-weight: 600;
}
.infotable th {
    white-space: nowrap;
    border-bottom: 1px solid #0A4F7F;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 3rem;
    letter-spacing: 0.1em;
}
.infotable td {
    border-bottom: 1px solid rgba(92,157,165,0.35);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 4rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
.infotable {
    font-size: 1.5rem;
    line-height: calc(22 / 15);
}
.infotable th {
    white-space: nowrap;
    border-bottom: 1px solid #0A4F7F;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
}
.infotable td {
    border-bottom: 1px solid rgba(92,157,165,0.35);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
}
}

/* pagenation
----------------------------------------- */
#pagenation {
	text-align: center;
    margin: 10rem auto 0;
}
#pagenation #pagenation-list {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0 3rem;
	position: relative;
}

#pagenation #pagenation-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all .6s;
    transition: all .6s;
}

#pagenation #pagenation-list li > a,
#pagenation #pagenation-list li > span {
	font-size: 1.8rem;
    letter-spacing: 0;
	line-height: 1;
	font-weight: 400;
    margin-top: -0.2em;
    color: #0A4F7F;
    transition: all .6s;
    position: relative;
    z-index: 1;
}
#pagenation #pagenation-list li > a:hover,
#pagenation #pagenation-list li > span:hover,
#pagenation #pagenation-list li > span.current {
	opacity: 1;
}

#pagenation #pagenation-list li > a::after,
#pagenation #pagenation-list li > span::after {
	content: '';
    display: block;
    width: 150%;
    height: 1px;
    background-color: #0A4F7F;
    transition: all .6s;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translate(-50%,100%);
    opacity: 0;
    z-index: -1;
}
#pagenation #pagenation-list li > a:hover::after,
#pagenation #pagenation-list li > span:hover::after,
#pagenation #pagenation-list li > span.current::after {
	opacity: 1;
}

#pagenation #pagenation-list li.next {
    margin-left: 1rem;
    margin-top: 0.2em;
    
    display: none;
}
#pagenation #pagenation-list li.prev {
    margin-right: 1rem;
    margin-top: 0.2em;
    
     display: none;
}

/*#pagenation #pagenation-list a.next,
#pagenation #pagenation-list a.prev {
    padding: 1.5rem 2rem;
}
#pagenation #pagenation-list a.next span,
#pagenation #pagenation-list a.prev span {
    font-size: 1.4rem;
    font-weight: bold;
}*/

#pagenation #pagenation-list a.post_arrow {
    position: relative;
    width: 1.3rem;
    height: 2.5rem;
}

#pagenation #pagenation-list a.next::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-right: 1px solid #32514C;
    border-top: 1px solid #32514C;
    transform: translate(-50%, -50%) rotate(45deg);
}
#pagenation #pagenation-list a.prev::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-left: 1px solid #32514C;
    border-bottom: 1px solid #32514C;
    transform: translate(-50%, -50%) rotate(45deg);
}

#pagenation #pagenation-list a.next::after,
#pagenation #pagenation-list a.prev::after {
	display: none;
}

#pagenation #pagenation-list a.post_arrow:hover {
	opacity: .6;
}


#pagenation #pagenation-list .omit{
	font-size: 1.2rem;
    letter-spacing: 0.02em;
}


@media screen and (max-width: 768px) {
#pagenation {
	width: 100%;
    margin: 9rem auto 0;
}
#pagenation #pagenation-list {
	grid-gap: 0 1.5rem;
}

#pagenation #pagenation-list li > a,
#pagenation #pagenation-list li > span {
	font-size: 1.7rem;
}

#pagenation #pagenation-list li > a::after,
#pagenation #pagenation-list li > span::after {
	bottom: -1rem;
}

#pagenation #pagenation-list li.next {
    margin-left: 0.5rem;
    margin-top: 0.1em;
}
#pagenation #pagenation-list li.prev {
    margin-right: 0.5rem;
    margin-top: 0.1em;
}

#pagenation #pagenation-list a.next,
#pagenation #pagenation-list a.prev {
    padding: 1.3rem 1.5rem;
}
#pagenation #pagenation-list a.next span,
#pagenation #pagenation-list a.prev span {
    font-size: 1.2rem;
}

#pagenation #pagenation-list .omit{
	font-size: 1.2rem;
    letter-spacing: 0.02em;
}

}