@charset "utf-8";
/* CSS Document */

/* layout base css
-----------------------------------------------------*/
:root {
  --main-color: #E9537D;
  --main-color-rgb: 233,83,125;
  
  --font-base-color: #545454;
  
  --gray-color: #B8B8B8;
  --light-gray-color: #DCDCDC;
}
/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
    image-rendering: -webkit-optimize-contrast;
    max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	font-size: 100%;
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    body
============================================== */
body {
	text-align: center;
	line-height: 1.6;
	color: var(--font-base-color);
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	font-family: "Noto Sans JP", sans-serif;
}
form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
    color: var(--main-color);
	transition: all .4s;
	text-decoration: none;
}

/* @media screen and (min-width: 701px) { */
@media (hover: hover) {
    a:hover {
        text-decoration: underline;
    }
    
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    
============================================== */
#container {
	zoom: 1;
	margin: 0 auto;
	text-align: left;
}
#container:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}
.inner {
	width: 1300px;
    margin: 0 auto;
	text-align: left;
}

.tab,
.sp {
	display: none;
}
.switch {}
.call {}
.call a {
    color: inherit;
}

nav ul {
    list-style: none;
}

@media screen and (max-width: 1350px) {
	.inner {
		width: 100%;
	}
    .txt {
        padding: 0 10px;
    }

}

@media screen and (max-width: 700px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}

}

/* ==============================================
    container
============================================== */
#container {
	position:relative;
	margin: 0 auto;
    overflow-x: hidden;
}

#contents-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(12.5rem, 1.417rem + 25.33vw, 17.25rem); /* 200-276 700-1000 */
    column-gap: clamp(2.5rem, -3.917rem + 14.67vw, 5.25rem); /* 40-84 700-1000 */
}

@media screen and (min-width: 701px) {
    #side {
        position: relative;
        width: clamp(12.5rem, 1.417rem + 25.33vw, 17.25rem);
    }

    #side.fixed-side nav {
        position: fixed;
        top: 0;
        width: clamp(12.5rem, 1.417rem + 25.33vw, 17.25rem);
    }
}



@media screen and (max-width: 700px) {
    #contents-wrapper {
        display: block;
    }
}

/* ==============================================
    header
============================================== */
header {
	margin: 0 0 30px;
	padding: 0;
    border-bottom: 1px solid var(--light-gray-color);
    height: 96px;
    display: flex;
    align-items: center;
}

header #siteid {
	display: block;
    width: 260px;
}

@media screen and (max-width: 1350px) {
    header #siteid {
        margin-left: 10px;
    }
}
@media screen and (max-width: 700px) {
    header #siteid {
        width: 208px;
    }
}


@media screen and (max-width: 700px) {
    .globalnav {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 226, 234, 0.9);
        padding: 96px 0 0 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
    }
    .globalnav.active {
        transform: translateX(0);
    }
}

/* ==============================================
    menuBtn span
============================================== */
#menuBtn {
	display: none;
	position: absolute;
	top: 30px;
	right: 8px;
	width: 40px;
	height: 40px;
	text-indent: -10000px;
	overflow: hidden;
	cursor: pointer;
	z-index: 101;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 20px;
	height: 1px;
	margin-left: 0px;
	background: var(--font-base-color);
	top: 50%;
	left: 10px;
	transition: all .3s;
	opacity: 1;
}
#menuBtn span {
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -5px);
}
#menuBtn:after {
	transform: translate(0, 5px);
}

#menuBtn.active span {
	opacity: 0;
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
	#menuBtn {
		display: block;
	}
}

/* ==============================================
    breadcrumb
============================================== */

#breadcrumb {
	margin: 0 0 40px 0;
}

#breadcrumb ol {
	list-style: none;
    font-size: 0;
}
#breadcrumb li {
	display: inline-block;
	color: var(--font-base-color);
	font-size: 0.875rem;
    line-height: 1.2;
}

#breadcrumb li a {
	color: var(--main-color);
	text-decoration: none;
}
#breadcrumb li a:hover {
	text-decoration: none;
}

#breadcrumb li a::after {
	content: "";
	display: inline-block;
    background: url("image/arrow1_p.svg") no-repeat center center / 5px 5px;
    width: 1em;
    height: 1em;
    vertical-align: middle;
	padding: 0;
}

@media screen and (max-width: 1350px) {
	#breadcrumb {
		margin: 0 10px 40px 10px;
	}
}
@media screen and (max-width: 700px) {
	#breadcrumb {
		margin: 0 10px 30px 10px;
	}
}

/* ==============================================
    side
============================================== */
.side-widget {}

.side-widget-ttl {
    border-top: 2px solid var(--main-color);
    border-bottom: 1px solid var(--light-gray-color);
    margin: 0 0 20px;
}
.side-widget-ttl a {
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    padding: 10px 40px 10px 5px;
    min-height: 84px;
    display: flex;
    align-items: center;
    position: relative;
}
.side-widget-ttl a::after {
    content: "";
    display: block;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translate(0, -50%);
    background: #fff url("image/arrow1_p.svg") no-repeat center center / 8px 8px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--light-gray-color);
    border-radius: 50%;
    transition: .2s;
}
.side-widget-ttl a:hover::after {
    transform: translate(3px, -50%);
}
.side-widget-ttl a:hover {
    text-decoration: none;
    opacity: 1;
    color: inherit;
    background: #F5F5F5;
}

.side-widget li {
    font-size: 14px;
    font-weight: 400;
}
.side-widget li a {
    display: block;
    padding: 10px 0 10px 20px;
    color: inherit;
    position: relative;
    transition: .2s;
}
.side-widget li a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: url("image/arrow1_g.svg") no-repeat center center / 6px 6px;
    width: 14px;
    height: 14px;
    transition: .2s;
}


@media (hover: hover) {
    .side-widget li a:hover::before {
        background-image: url("image/arrow1_p.svg");
        transform: translate(5px, -50%);
    }
    .side-widget li a:hover {
        color: var(--main-color);
        text-decoration: none;
        opacity: 1;
        padding-left: 25px;
    }
}

@media screen and (max-width: 700px) {
    .side-widget li a {
        padding: 16px 0 16px 20px;
    }
    .side-widget-ttl a::after {
        background-color: transparent;
        border: none;
    }
}

/* ==============================================
    index
============================================== */
.main-visual {
    width: 100%;
    margin: 0 0 70px;
}

/* ==============================================
    infoList
============================================== */
.infoList {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    grid-gap: 0;
    margin: 0 0 30px;
}
.infoList dt,
.infoList dd {
    border-top: 1px dashed var(--gray-color);
    padding: 20px 5px;
}
.infoList dt {
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.infoList dd {
    font-size: 0.875em;
}
.infoList .date {
    font-size: 12px;
    font-weight: 500;
}
.infoList .category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    width: 96px;
    line-height: 25px;
    border-radius: 14px;
    background: #f5f5f5;
    box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.16);
}

.infoList dd a:hover {
    opacity: 1;
    text-decoration: none;
}



@media screen and (max-width: 1000px) {
    .infoList {
        display: block;
        margin: 0 10px 30px;
    }
    .infoList dt {
        justify-content: flex-start;
        padding: 10px 0;
    }
    .infoList dd {
        border-top: none;
        background: none;
        padding: 0 0 10px;
    }
    .infoList .date {
        width: 10em;
    }
}

/* ==============================================
    pagetitle
============================================== */
#pagetitle {
    margin: 0 0 30px;
}

#pagetitle h1 {
    font-size: clamp(1.625rem, 1.353rem + 1.03vw, 2rem); /* 26-32 420-1000 */
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

#pagetitle h1::before,
#pagetitle h1::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    border-radius: 8px;
    background: var(--light-gray-color);
}
#pagetitle h1::before {
    background: var(--main-color);
    height: 50%;
    z-index: 2;
}

.ttl-1 {
    font-size: clamp(1.375rem, 1.194rem + 0.69vw, 1.625rem); /* 22-26 420-1000 */
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 30px 0;
    border-top: 1px solid var(--light-gray-color);
    padding: 20px 5px;
    position: relative;
}
.ttl-1::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 220px;
    height: 1px;
    background: var(--main-color);
}

.ttl-2 {
    font-size: clamp(1.25rem, 1.159rem + 0.34vw, 1.375rem); /* 22-26 420-1000 */
    font-weight: 500;
    line-height: 1.2;
    margin: 40px 0 20px 0;
    border-top: 1px solid var(--light-gray-color);
    padding: 14px 5px;
    position: relative;
}
.ttl-2::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--font-base-color);
}


.ttl-3 {
    margin: 40px 0 30px;
}
.ttl-3 strong {
    font-size: 1.125em;
    font-weight: 700;
    color: var(--main-color);
    background-image: repeating-linear-gradient(90deg, #707070, #707070 4px, transparent 4px, transparent 8px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    padding: 0 0 20px 26px;
    display: inline-block;
    position: relative;
}

.ttl-3 strong::before {
    content: "";
    display: inline-block;
    background: var(--main-color);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 2px;
}

.ttl-4 {
    font-size: 1.125em;
    font-weight: 500;
    border-top: 1px solid var(--light-gray-color);
    padding: 10px 5px;
    margin: 40px 0 30px;
}


/* ==============================================
    contents
============================================== */
main section:not(:last-child) {
    margin: 0 0 60px;
}

.intro {
    margin-bottom: 50px;
}

.txt {
    font-size: 1em;
    line-height: 1.75;
    margin: 0 0 1.5em;
    padding: 0 5px;
}

@media screen and (max-width: 1350px) {
    .txt {
        padding: 0 10px;
    }
}

.mb50 {
    margin-bottom: 50px;
}

figure.photo {
    text-align: center;
    margin: 0 auto 40px;
}
figure.photo figcaption {
    font-size: 0.875em;
    text-align: center;
    margin: 10px 5px 0;
}

.photo-col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 20px;
    margin: 0 0 50px;
}
.photo-col2 figure.photo {
    margin-bottom: 0;
}

@media screen and (max-width: 700px) {
    .photo-col2 {
        grid-template-columns: 1fr;
    }
}


ul.disc {
    list-style: none;
    margin: 0 0 30px 10px;
}
ul.disc li {
    margin: 10px 0;
    padding: 0 0 0 20px;
    position: relative;
}
ul.disc li::before {
    content: "";
    display: inline-block;
    background: var(--gray-color);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

ul.notes {
    list-style: none;
    margin: 0 0 30px 10px;
}
ul.notes li {
    padding-left: 1em;
    line-height: 1.3;
    margin-bottom: 12px;
}
ul.notes li::before {
    content: "※";
    display: inline-block;
    margin-left: -1em;
}

ul.banner {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 5px;
}
.bnr {
    text-align: center;
}
@media screen and (max-width: 700px) {
    ul.banner {
        flex-direction: column;
    }
}



dl.tableset {
    display: grid;
    grid-template-columns: clamp(6.875rem, -3.333rem + 23.33vw, 11.25rem) minmax(0, 1fr); /* 110-180 700-1000 */
    grid-gap: 0 10px;
    margin: 0 0 30px;
}
dl.tableset dt,
dl.tableset dd {
    border-top: 1px solid #E3E3E3;
    padding: 20px 5px;
}
dl.tableset dt {
    border-top-color: var(--gray-color);
    font-weight: 700;
}


.flexbox {
    display: flex;
    gap: 50px;
}
.flexbox .text {
    flex: 1;
}
.flexbox figure {
    text-align: center;
}

@media screen and (max-width: 1350px) {
    .flexbox figure {
        max-width: 40%;
    }
}

@media screen and (max-width: 1000px) {
    .flexbox {
        flex-direction: column;
    }
    .flexbox figure {
        max-width: inherit;
    }
}


.btn {
    font-size: 1.125em;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 365px;
    height: 68px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--gray-color);
    padding: 5px 10px;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 3em 0 rgba(255,255,255, 0), 0 0 0 rgba(84,84,84,1);
    transition: text-shadow 0.2s;
}
.btn:hover {
    text-decoration: none;
    opacity: 1;
}
@media (hover: hover) {
    .btn:hover {
        background: var(--main-color);
        border-color: var(--main-color);
        text-shadow: 0 0 0 rgba(255,255,255, 1), 0 -3em 0 rgba(84,84,84,0);
    }
}

@media screen and (max-width: 700px) {
    .btn {
        width: 96%;
        margin: 0 auto;
    }
}


.btn_more .btn {
    font-size: 0.875em;
    width: 230px;
    height: 42px;
    margin: 0 auto;
}


ul.pdf_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-left: 5px;
}
ul.pdf_list li {
    width: 280px;
}



a strong.link {
    display: inline;
    font-weight: 500;
    background: linear-gradient(0deg, currentColor 2px, transparent 99%) no-repeat;
    transition: all .6s ease-out;
    background-position: 0 100%;
    background-size: 0 1px;
    padding-bottom: 1px;
}

@media (hover: hover) {
    a:hover strong.link {
        background-size: 200% 1px;
    }
}

a.pdf {
    font-size: 1.125em;
    line-height: 1.3;
    font-weight: 500;
    color: var(--main-color);
	position: relative;
	display: flex;
    align-items: center;
	padding: 10px 30px 10px 70px;
    width: 100%;
    min-height: 68px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--gray-color);
}
a.pdf::before {
	position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
	content: "";
	display: inline-block;
	background: url("image/file_pdf.svg") no-repeat center center;
	background-size: contain;
	width: 30px;
	height: 30px;
    transition: .2s;
}
a.pdf:hover {
    text-decoration: none;
    opacity: 1;
}

@media (hover: hover) {
    a.pdf:hover::before {
        transform: translateY(calc(-50% - 3px));
    }
}





/* Youtube レスポンシブ用 */
.movie_wrap {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



table.tbstyle1 {
    width: 100%;
    margin: 0 0 20px;
}
table.tbstyle1 th,
table.tbstyle1 td {
    width: calc(100% / 7);
    text-align: center;
}
table.tbstyle1 thead th {
    background: #FFE2EA;
    border: 1px solid #fff;
    padding: 16px 10px;
    font-weight: 400;
}

table.tbstyle1 tbody th,
table.tbstyle1 tbody td {
    border: 1px solid #E3E3E3;
    padding: 20px 10px;
}
table.tbstyle1 tbody th span {
    display: block;
    font-weight: 400;
    font-size: 0.875em;
}

@media screen and (max-width: 1000px) {
    table.tbstyle1 th,
    table.tbstyle1 td {
        width: auto;
    }
    table.tbstyle1 thead th {
        padding: 8px 6px;
    }
    table.tbstyle1 tbody th {
        padding: 14px 3px;
    }
    table.tbstyle1 tbody td {
        padding: 14px 6px;
    }
}


table.tbstyle2 {
    width: 100%;
    margin: 0 0 20px;
}
table.tbstyle2 th,
table.tbstyle2 td {
    text-align: center;
    font-weight: 400;
}
table.tbstyle2 thead th {
    background: #FFE2EA;
    border: 1px solid #fff;
    padding: 16px 10px;
    
}

table.tbstyle2 tbody th,
table.tbstyle2 tbody td {
    border: 1px solid #E3E3E3;
    padding: 20px 10px;
    
}
table.tbstyle2 tbody th {
    background: #F5F5F5;
}



@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}

/* ==============================================
    result-archives
============================================== */
.result-archives {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.result-item {
    border-left: 1px solid var(--main-color);
    border-top: 1px dashed var(--gray-color);
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.result-item-info {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.result-item-info span {
    position: relative;
    display: inline-block;
}
.result-item-info span:first-child::after {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--font-base-color);
    display: inline-block;
    position: absolute;
    top: 0;
    right: -15px;
}

.result-item-title {
    font-size: 1.125em;
    font-weight: 700;
}
.result-item-person {
    padding-left: 18px;
}
.result-item-person::before {
    content: "";
    display: inline-block;
    background: url("image/icon_person.svg") no-repeat center center / contain;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: -18px;
}

@media screen and (max-width: 1350px) {
    .result-archives {
        margin: 0 10px;
    }
}

@media screen and (max-width: 700px) {
    .result-item-info {
        display: block;
    }
    .result-item-info span:last-child {
        display: block;
        margin: 5px 0 0 0;
    }
}


/* ==============================================
    footer
============================================== */
footer {
	border-top: 1px solid var(--light-gray-color);
    padding: 65px 0 25px;
    margin: 70px 0 0 0;
}

.copyright {
    font-size: 14px;
    font-weight: 500;
	text-align:center;
}


/* ==============================================
    slick style
============================================== */
.slick-dots li button::before {
	font-size: 12px;
	color: #bbb;
	opacity: 1;
	transition: .4s;
}
.slick-dots li.slick-active button::before {
	color: #000;
}
.slick-dots li button:hover::before {
	opacity: 0.8;
}

.slick-prev,
.slick-next {
	width: 46px;
	height: 46px;
	z-index: 10;
}
.slick-prev:before,
.slick-next:before {
	content: "";
	display: inline-block;
	width: 46px;
	height: 46px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
    opacity: 1;
	transition: .4s;
}

.slick-prev:before {
	background-image: url("image/slick_arrow.svg");
	transform: rotate(180deg);
}
.slick-next:before {
	background-image: url("image/slick_arrow.svg");
}
.slick-prev
{
    left: 10px;
}
[dir='rtl'] .slick-prev
{
    right: 10px;
    left: auto;
}
.slick-next
{
    right: 10px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 10px;
}
@media screen and (max-width: 700px) {
	.slick-prev,
	.slick-next {
		width: 30px;
		height: 30px;
	}
	.slick-prev:before,
	.slick-next:before {
		width: 30px;
		height: 30px;
	}
}

/* slickの最初のちらつき解消 */
.slider {
	opacity: 0;
	transition: .8s ease-in;
    margin-bottom: 30px;
}
.slider.slick-initialized {
	opacity: 1;
}

/* ==============================================
    スクロールアニメーション
============================================== */
.scrollin {}
.fadein {}
.slidein {}

.scrollin.fadein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateY(100px);
}
.scrollin.fadein.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scrollin.slidein {
	opacity : 0;
	visibility: hidden;
	transition: 0.5s;
	transform: translateX(300px);
}
.scrollin.slidein.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
