/******************************************************************
Theme Name: GREIC
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 1.0
******************************************************************/

/* --------------------------------------------------
 common
--------------------------------------------------- */

/* reset
--------------------------------------------------- */

*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul,ol,li{margin:0;padding:0;list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;border-radius:0;font:inherit;outline: none}textarea{resize:vertical}input[type='checkbox'],input[type='radio']{display:none}input[type='submit'],input[type='button'],label,button,select{cursor:pointer}select::-ms-expand{display:none}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* root setting
--------------------------------------------------- */

:root {
    --color-wh: #fff;
    --color-wgy: #f1f1f1;
    --color-gy: #666;
    --color-bk: #000;
    --color-theme-01: #3E99AB;
    --color-theme-02: #d6f4f4;
    --color-theme-03: #c9dfe5;
}

/* layout
--------------------------------------------------- */

html {
    height: 100%;
    font-size: 100%;
}
body {
    height: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    font-size: var(--fs);
    line-height: 1.8;
    text-align: justify;
    color: var(--color-bk);
    background: var(--color-wh);
    overflow-y: scroll;
}

a {
    display: block;
    color: var(--color-dgy);
    text-decoration: none;
    cursor: pointer;
}
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
}

/* --------------------------------------------------
 header
--------------------------------------------------- */

/* gnavi
--------------------------------------------------- */

.gnavi {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-theme-01);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
	overflow: hidden;
}
.gnavi__inner {
	position: relative;
	width: calc(100% - 40px);
	max-width: 1080px;
	height: 100%;
	margin: auto;
}
.gnavi__inner .logo {
	z-index: 99;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: 2px;
	transform: translate(0, -50%);
}
.gnavi .logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-wh);
}
.gnavi .menu-btn {
	z-index: 99;
	position: absolute;
	top: 50%;
	right: 0;
	width: 26px;
	height: 60px;
	transform: translate(0, -50%);
	transition: .25s;
}
.gnavi .menu-btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 3px;
	background: var(--color-wh);
	transform: translate(-50%, -50%);
	transition: .25s;
}
.gnavi .menu-btn span:nth-child(1) {
	margin-top: -8px;
}
.gnavi .menu-btn span:nth-child(3) {
	margin-top: 8px;
}
.gnavi.open .menu-btn {
	transform: translate(0, -50%) rotate(90deg);
}
.gnavi.open .menu-btn span:nth-child(1) {
	margin: 0;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.gnavi.open .menu-btn span:nth-child(2) {
	display: none;
}
.gnavi.open .menu-btn span:nth-child(3) {
	margin: 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

.gnavi .menu {
	z-index: 98;
	position: fixed;
	top: -100vh;
	left: 0;
	width: 100%;
	background: var(--color-theme-01);
	transition: .4s;
}
.gnavi.open .menu {
	top: 60px;
}
.gnavi .menu ul {
	display: flex;
	flex-direction: column;
	padding: 20px;
}
.gnavi .menu ul li {
	width: 100%;
	padding: 15px;
	text-align: center;
}
.gnavi .menu ul li a {
	color: var(--color-wh);
}
.gnavi .form-link {
	display: flex;
	justify-content: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	background: var(--color-theme-01);
    box-shadow: -1px 0 6px rgba(0, 0, 0, .2);
}
.gnavi .form-link a {
	padding: .5rem 2rem;
    background: var(--color-wh);
    border-radius: 2rem;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
    font-weight: 700;
    color: var(--color-theme-01);
	transition: .25s;
}
.gnavi .form-link a:hover {
	opacity: .8;
}
@media screen and (min-width: 768px) {
	.gnavi__inner {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: calc(100% - 60px);
	}
	.gnavi__inner .logo {
		position: relative;
		top: 0;
		left: 0;
		margin-top: 0;
		transform: translate(0, 0);
}
	.gnavi .menu-btn {
		display: none;
	}
	.gnavi .menu {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		margin-left: auto;
		background: none;
	}
	.gnavi .menu ul {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		padding: 0;
	}
	.gnavi .menu ul li {
		padding: 0;
	}
	.gnavi .menu ul li a {
		white-space: nowrap;
	}
	.gnavi .form-link {
		position: relative;
		bottom: auto;
		left: auto;
		width: auto;
		margin-left: 25px;
		padding: 0;
		background: none;
		box-shadow: none;
	}
	.gnavi .form-link a {
		padding: 0.3rem 1rem;
		background: var(--color-wh);
		border-radius: 2rem;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
	}
}
@media screen and (min-width: 1024px) {
	.gnavi .menu ul {
		gap: 30px;
	}
	.gnavi .menu ul li a {
		letter-spacing: .03em;
	}
	.gnavi .form-link {
		margin-left: 30px;
	}
}

/* --------------------------------------------------
 contents
--------------------------------------------------- */

.mv {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.mv__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 60px 0 120px;
}
.mv__head {
    z-index: 5;
    position: relative;
    padding: 40px 25px;
    line-height: 1.2;
    color: var(--color-gy);
}
.mv__head h1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mv__head h1 .mv__title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
@media screen and (min-width: 768px) {
	.mv__inner {
		padding-bottom: 20px;
	}
    .mv__head {
        margin-top: 80px;
        padding: 15px 50px;
        background: linear-gradient(90deg, rgba(255, 255, 255,.7) 40%, rgba(255, 255, 255, 0) 60%);
    }
    .mv__head h1 .mv__title {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .mv__inner {
        max-width: 1080px;
        margin: auto;
        padding-bottom: 20px;
    }
}
@media screen and (min-width: 1280px) {
    .mv__head {
        padding: 15px 0;
    }
}
.mv__head h1 .mv__number {
    font-size: 1.8rem;
}
.mv__head h1 .mv__main {
    font-size: 5.2rem;
}
.mv__head h1 .mv__sub {
    text-align: left;
    font-size: 1.3rem;
}
.mv__text {
    z-index: 5;
    position: relative;
    margin-top: 50px;
    padding: 10px 0;
}
@media screen and (min-width: 768px) {
    .mv__text {
        margin-top: 100px;
        padding: 20px 0;
    }
}
.mv__text::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255,.7) 40%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.2;
}
.mv__text h2 {
    z-index: 2;
    position: relative;
    padding: 10px 25px;
    font-size: 2rem;
    line-height: 1.5;
    color: #333;
    text-shadow: 0px 0px 10px var(--color-wh), 1px 1px 2px var(--color-wh), -1px -1px 2px var(--color-wh);
}
.mv__text h2 span {
    display: block;
    font-size: 0.7em;
}
@media screen and (min-width: 768px) {
    .mv__text h2 {
        padding: 10px 50px;
    }
}
@media screen and (min-width: 1280px) {
    .mv__text h2 {
        padding: 10px 0;
    }
}
.mv__date {
    z-index: 4;
    display: block;
    position: absolute;
    bottom: 40px;
    right: 45px;
}
@media screen and (min-width: 768px) {
    .mv__date {
        bottom: auto;
        top: 170px;
        right: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .mv__date {
        top: auto;
        bottom: 40px;
    }
}
.mv__date::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10em;
    height: 10em;
    background: var(--color-theme-01);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, .2);
}
.mv__date p {
    display: block;
    position: relative;
    padding-top: .25em;
    color: var(--color-wh);
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}
.mv__date p span {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 0.25rem;
    font-size: .9em;
}
.mv__date p b {
    display: block;
    margin-top: .25em;
    padding: .25em 0 0 .5em;
    font-size: .5em;
    border-top: 1px solid var(--color-wh);
}
.mv__bg {
    z-index: 3;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 1120px;
}
.mv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .mv__bg {
        top: 0;
        left: auto;
        right: -410px;
        width: 1170px;
    }
}
@media screen and (min-width: 1024px) {
    .mv__bg {
		right: -330px;
        width: 1280px;
	}
}
        
/* --------------------------------------------------
 page top button
--------------------------------------------------- */

.page-top {
    z-index: 100;
    display: block;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
}
.page-top a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(62, 153, 171, .6);
    border-radius: 50%;
    cursor: pointer;
}
.page-top a:hover {
    opacity: .9;
}
.page-top a::before {
    z-index: 99;
    content: "";
    position: absolute;
    top: calc(50% + 3px);
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-wh);
    border-right: 2px solid var(--color-wh);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.page-top a span {
    display: none;
}
@media screen and (min-width: 768px) {
	.page-top {
		bottom: 40px;
	}
}

/* --------------------------------------------------
 section common
--------------------------------------------------- */

.section__head h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: 130px;
    margin-bottom: 2rem;
}
.section__head h2::before,
.section__head h2::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100px;
    height: 100px;
}
.section__head h2::before {
    top: 0;
    left: 0;
    border-left: solid 1px var(--color-theme-01);
    border-top: solid 1px var(--color-theme-01);
}
.section__head h2::after {
    bottom: 0;
    right: 0;
    border-right: solid 1px var(--color-theme-01);
    border-bottom: solid 1px var(--color-theme-01);
}
.section__head h2 span.en {
    font-size: 2.2rem;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 1.6;
    color: rgba(62, 153, 171, .4);
}
.section__head h2 span.jp {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(62, 153, 171, 1);
}
@media screen and (min-width: 768px) {
	.section__head h2 span.en {
		font-size: 2.5rem;
	}
}
@media screen and (min-width: 1024px) {
	.section__head {
		width: 220px;
	}
	.section__head h2 {
		height: 220px;
	}
}

/* --------------------------------------------------
 greeting
--------------------------------------------------- */

.greeting {
    z-index: 1;
    position: relative;
    width: 100%;
    padding-top: 10px;
}
.greeting__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
@media screen and (min-width: 768px) {
	.greeting__inner {
		padding: 50px 50px;
	}
}
@media screen and (min-width: 1024px) {
	.greeting__inner {
		display: flex;
		flex-wrap: wrap;
		padding: 90px 50px;
	}
}
@media screen and (min-width: 1280px) {
	.greeting__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
}
.greeting__text h3 {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--color-theme-01);
    text-align: justify;
}
@media screen and (min-width: 768px) {
	.greeting__text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.greeting__text h3 {
		margin-bottom: 0;
		padding: 40px 0;
		font-size: 2rem;
	}
	.greeting__text h3 span {
		margin-left: 2em;
	}
}
@media screen and (min-width: 1024px) {
	.greeting__text {
		width: calc(100% - 220px);
		padding-left: 60px;
	}
	.greeting__text h3 {
		padding-top: 0;
	}
}

.greeting__text p {
    padding-top: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    word-break: break-all;
}
.greeting__text p:nth-of-type(1) {
    padding-top: 0;
}
@media screen and (min-width: 768px) {
	.greeting__text p {
		font-size: 1rem;
	}
}

/* --------------------------------------------------
 outline
--------------------------------------------------- */

.outline {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-theme-03);
}
.outline__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
@media screen and (min-width: 768px) {
	.outline__inner {
		padding: 50px;
	}
}
@media screen and (min-width: 1024px) {
	.outline__inner {
		display: flex;
		flex-wrap: wrap;
		padding: 90px 50px;
	}
}
@media screen and (min-width: 1280px) {
	.outline__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
}
.outline__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
}
.outline__detail dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.outline__detail dl dt {
    width: 100%;
    padding-bottom: 8px;
    color: var(--color-theme-01);
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid var(--color-theme-01);
    line-height: 1.5;
}
.outline__detail dl dd {
    width: 100%;
    padding-top: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
}
.outline__detail p {
	width: 100%;
    font-size: 0.85rem;
    line-height: 1.6;
}
.outline__map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.outline__map iframe,
.outline__map object,
.outline__map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.outline__map iframe {
	max-height: 299px;
}
@media screen and (min-width: 768px) {
	.outline__detail dl dt {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 150px;
		padding: 0;
		border-bottom: none;
		border-right: 1px solid var(--color-theme-01);
	}
	.outline__detail dl dd {
		width: calc(100% - 150px);
		padding: 8px 0 8px 30px;
		font-size: 1rem;
	}
	.outline__detail p {
		padding-top: 20px;
		font-size: 0.9rem;
		text-align: center;
	}
	.outline__map {
		padding-bottom: 40%;
	}
}
@media screen and (min-width: 1024px) {
	.outline__detail {
		width: calc(100% - 500px);
		padding-right: 60px;
	}
	.outline__detail dl dt {
		width: 120px;
	}
	.outline__detail dl dd {
		width: calc(100% - 120px);
	}
	.outline__map {
		width: 500px;
	}
}


/* --------------------------------------------------
 agenda
--------------------------------------------------- */

.agenda {
    z-index: 1;
    position: relative;
    width: 100%;
}
.agenda__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
.agenda__list {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
	width: 100%;
}
.agenda__item:nth-child(2n+1) {
    background:rgba(62, 153, 171, .05);
}
.agenda__item:nth-child(2n+2) {
    background:rgba(62, 153, 171, .15);
}
.agenda__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
	width: 100%;
    padding: 15px;
}
.agenda__time {
    color: var(--color-gy);
    font-weight: 700;
}
.agenda__detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agenda__title {
    color: var(--color-gy);
    font-weight: 700;
	text-align: left;
}
.agenda__title span {
	padding-left: 0.8em;
    color: var(--color-theme-01);
}
.agenda__people {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agenda__people li {
    display: flex;
}
.agenda__people li.column2 .agenda__people-position {
    width: 90px;
}
.agenda__people li.column2 .agenda__people-text {
    width: calc(100% - 90px);
}
.agenda__people-position {
    padding-top: 3px;
    font-size: 0.8rem;
    white-space: nowrap;
}
.agenda__people-name {
    font-weight: 700;
}
.agenda__people-desc {
    font-size: 0.8rem;
    line-height: 1.6;
}
.agenda__attention {
	padding-top: 15px;
	font-size: 0.85rem;
    line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.agenda__inner {
		padding: 50px;
	}
	.agenda__item {
		gap: 15px;
		padding: 25px;
	}
	.agenda__people li.column2 .agenda__people-position {
		width: 100px;
	}
	.agenda__people li.column2 .agenda__people-text {
		width: calc(100% - 100px);
	}
	.agenda__people-position {
		padding-top: 3px;
		font-size: 0.9rem;
	}
	.agenda__people-desc {
		font-size: 0.85rem;
	}
	.agenda__attention {
		padding-top: 25px;
		font-size: 0.95rem;
	}
}
@media screen and (min-width: 1024px) {
	.agenda__inner {
		display: flex;
		flex-wrap: wrap;
		padding: 90px 50px;
	}
	.agenda__list {
		width: calc(100% - 220px);
		padding-left: 60px;
	}
}
@media screen and (min-width: 1280px) {
	.agenda__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
}

/* --------------------------------------------------
 speakers
--------------------------------------------------- */

.speakers {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-wgy);
}
.speakers__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
.speakers__list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
	width: 100%;
}
.speakers__list ul li {
    width: 100%;
}
.speakers__list ul li .card {
    display: flex;
    flex-wrap: wrap;
}
.speakers__list ul li .card .image {
    width: 45%;
}
.speakers__list ul li .card .profile {
    display: flex;
    flex-direction: column;
    width: 55%;
    background: var(--color-wh);
}
.speakers__list ul li .card .profile .affiliation {
    width: 100%;
    padding: 20px 15px;
}
.speakers__list ul li .card .profile .affiliation img {
    max-height: 20px;
    margin: auto;
}
.speakers__list ul li .card .profile h3 {
    padding: 5px 15px;
    background: var(--color-theme-01);
    /*background:linear-gradient(90deg, rgba(62, 153, 171,1) 60%, rgba(62, 153, 171, 0) 100%);*/
    color: var(--color-wh);
    text-align: center;
}
.speakers__list ul li .card .profile p {
    margin-top: auto;
    padding: 10px 15px;
    color: var(--color-theme-03);
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: right;
}
.speakers__list ul li .card .more-btn {
    position: relative;
    width: 100%;
    padding: 10px 40px;
    font-size: 0.8rem;
    line-height: 1;
    text-align: right;
    background: var(--color-theme-03);
    color: var(--color-gy);
    transition: .3s;
}
.speakers__list ul li .card .more-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-bottom: 2px solid var(--color-theme-01);
    border-right: 2px solid var(--color-theme-01);
    transform: translate(0, -50%) rotate(45deg);
    transition: .3s;
}
.speakers__list ul li .card .more-btn.active::before {
    margin-top: 3px;
    transform: translate(0, -50%) rotate(-135deg);
}
.speakers__list ul li .card .desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 15px;
    background: var(--color-theme-03);
}
.speakers__list ul li .card .desc .speaker__position {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
	word-break: break-all;
}
.speakers__list ul li .card .desc .speaker__email {
    padding: 10px 0;
    font-size: 0.8rem;
    line-height: 1.4;
    border-top: 1px solid var(--color-bk);
    border-bottom: 1px solid var(--color-bk);
}
.speakers__list ul li .card .desc .speaker__email a {
    display: inline;
}
.speakers__list ul li .card .desc .speaker__text p {
    padding-top: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
}
.speakers__list ul li .card .desc .speaker__text p span {
	font-size: 0.64rem;
	line-height: 1;
}
.speakers__list ul li .card .desc .speaker__text p:nth-of-type(1) {
    padding-top: 0;
}
@media screen and (min-width: 768px) {
	.speakers__inner {
		padding: 50px;
	}
	.speakers__list ul {
		gap: 30px;
	}
	.speakers__list ul li {
		width: calc(50% - 15px);
	}
}
@media screen and (min-width: 1024px) {
	.speakers__inner {
		display: flex;
		flex-wrap: wrap;
		padding: 90px 50px;
	}
	.speakers__list {
		width: calc(100% - 220px);
		padding-left: 60px;
	}
	.speakers__list ul li .card .image {
		width: 50%;
	}
	.speakers__list ul li .card .profile {
		width: 50%;
	}
}
@media screen and (min-width: 1280px) {
	.speakers__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
	.speakers__list ul li .card .image {
		width: 33%;
	}
	.speakers__list ul li .card .profile {
		width: 67%;
	}
}

/* --------------------------------------------------
 alliance
--------------------------------------------------- */

.alliance {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-wh);
}
.alliance__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
.alliance__list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 25px;
}
.alliance__list ul li {
    width: 100%;
}
.alliance__list ul li a {
	display: block;
	width: 100%;
	padding: 5px;
}
.alliance__list ul li a img {
	width: auto;
	max-height: 40px;
	margin: auto;
}
.alliance__inner p {
	padding-top: 25px;
	font-size: 0.8rem;
    line-height: 1.4;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.alliance__inner {
		padding: 70px 80px;
	}
	.alliance__list ul {
		gap: 30px;
	}
	.alliance__list ul li {
		width: calc(50% - 15px);
	}
	.alliance__inner p {
		padding-top: 40px;
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1024px) {
	.alliance__list ul li {
		width: calc(25% - (90px / 4));
	}
}
@media screen and (min-width: 1280px) {
	.alliance__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */

.footer {
	background: var(--color-theme-01);
	color: var(--color-wh);
}
.footer__inner {
	padding: 40px 20px 130px;
}
.footer__head h3 {
	font-size: 1rem;
	text-align: center;
}
.footer__contents {
	display: flex;
	flex-direction: column-reverse;
}
.footer__contents p {
	position: relative;
	padding-left: 30px;
}
.footer__contents p::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10px;
	width: 1px;
	height: 100%;
	background: var(--color-wh);
}
.footer__contents p span {
	display: block;
	padding-top: 12px;
	font-size: 0.8rem;
}
.footer__link {
	width: 100%;
	padding: 40px 0;
	text-align: center;
}
.footer__link a {
	display: inline-block;
	padding: .5rem 2rem;
    background: var(--color-wh);
    border-radius: 2rem;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
    font-weight: 700;
    color: var(--color-theme-01);
	text-align: center;
	transition: .25s;
}
.footer__link a:hover {
	opacity: .8;
}
@media screen and (min-width: 768px) {
	.footer__head h3 {
		font-size: 1.05rem;
	}
	.footer__inner {
		padding: 70px 50px;
	}
	.footer__contents {
		padding-top: 40px;
		flex-direction: row;
		align-items: center;
	}
	.footer__contents p {
		width: calc(100% - 250px);
	}
	.footer__link {
		width: 250px;
	}
}
@media screen and (min-width: 1024px) {
	.footer__inner {
		display: flex;
		flex-wrap: wrap;
	}
	.footer__head {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
	}
	.footer__contents {
		width: calc(100% - 200px);
		padding: 0;
	}
	.footer__contents p {
		padding-left: 50px;
		font-size: 1.05rem;
	}
	.footer__contents p span {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1280px) {
	.footer__inner {
		max-width: 1080px;
		margin: auto;
		padding: 90px 0;
	}
}