@charset "utf-8";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

html {
	font-size: 62.5%; /* font-sizeは10px */
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 行頭禁則文字 */
* {
	word-break: break-word;
	word-wrap: break-word;
}

body {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ffffff;
	line-height: 1.5;
	font-family: "YuGothic", "游ゴシック","dnp-shuei-gothic-gin-std","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	font-size: 14px;
	color: #00000;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * display
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media screen and (max-width: 1300px) {
    .tb-disp {
        display: block !important;
    }

    .tb-disp-table {
        display:table !important;
    }

    .tb-disp-inline {
        display:inline !important;
    }

    .tb-disp-inline-block {
        display: inline-block !important;
    }

    .tb-disp-none {
        display: none !important;
    }
}

@media screen and (max-width: 479px) {
    .sp-disp {
        display: block !important;
    }

    .sp-disp-table {
        display:table !important;
    }

    .sp-disp-inline {
        display:inline !important;
    }

    .sp-disp-inline-block {
        display: inline-block !important;
    }

    .sp-disp-none {
        display: none !important;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * visibility
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.visibility-hidden {
	visibility: hidden !important;
}

.visibility-visibile {
	visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * loader
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.loader {
    position: absolute;
    z-index: 2;
	width: 100%;
	height: 100vh;
    background: #ffffff;
}

.circle {
    width: 90px;
    height: 90px;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.circle img {
    width: 90px;
    height: 90px;
}

.circle-border {
  width: 90px;
  height: 90px;
  padding: 0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.1) 33%, rgba(0,0,0,1) 100%);
  animation: spin .5s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * main-visual
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main-visual {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;
}

.mv-bg {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: url('../../images/bg-mv-sp.jpg');
    background-repeat: no-repeat;
	background-size: cover;
    background-position: center center;
}

.tatenaga .mv-bg {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: url('../../images/bg-mv-sp.jpg');
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center center;
}

@media screen and (max-width: 479px) {
    .mv-bg {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: url('../../images/bg-mv-sp.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .tatenaga .mv-bg {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: url('../../images/bg-mv-sp.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}

.mv-bg-contents {
    position: relative;
    width: 100%;
    height: 100%;
}

.mv-logo {
    position: absolute;
    display: block;
    width: 40%;
    margin: 0;
    margin-top: -50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 479px) {
    .mv-logo {
        position: absolute;
        display: block;
        width: 50%;
        margin: 0;
        margin-top: -50px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.mv-logo img {
    width: 100%;
    height: auto;
}

.mv-copy {
    display: none;
}

.mv-copy-sp {
    position: absolute;
    display: block;
    width: 35%;
    margin: 0;
    margin-left: 0;
    top: auto;
    left: 50px;
    bottom: 50px;
}

.yokonaga .mv-copy-sp {
    position: absolute;
    display: block;
    width: 25%;
    margin: 0;
    margin-left: 0;
    top: auto;
    left: 50px;
    bottom: 50px;
}

@media screen and (max-width: 479px) {
    .mv-copy-sp {
        position: absolute;
        display: block;
        width: 50%;
        margin: 0;
        top: auto;
        left: 30px;
        bottom: 30px;
    }
}

.mv-copy-sp img {
    width: 100%;
    height: auto;
}


.mv-bn {
    display: none;
    position: absolute;
    z-index: 6;
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: #6c27af;
    background-image: -webkit-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: -o-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: linear-gradient(to top, #5b0a9b, #7d3cc3);
    text-align: center;
}

.mv-bn a {
    display: table;
    width: 100%;
    height: 100%;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-weight: bold;
    transition: all 0.3s;
}

.mv-bn a:hover {
    opacity: 0.7;
}

.mv-bn span {
    display: table-cell;
	width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.mv-bn font  {
    line-height: 1;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    /*color: #f1f167;*/
    color: #ffffff;
}

.mv-bn i.icon-down-dir {
    font-size: 20px;
}

.mv-bn i.icon-yajirushi-migi {
    font-size: 30px;
}


@media screen and (max-width: 479px) {
    .mv-bn {
        display: none;
        position: absolute;
        z-index: 6;
        bottom: 30px;
        right: 10px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.3);
        background: #6c27af;
        background-image: -webkit-linear-gradient(bottom, #5b0a9b, #7d3cc3);
        background-image: -o-linear-gradient(bottom, #5b0a9b, #7d3cc3);
        background-image: linear-gradient(to top, #5b0a9b, #7d3cc3);
        text-align: center;
    }

    .mv-bn a {
        display: table;
        width: 100%;
        height: 100%;
        color: #ffffff;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
        font-size: 9px;
        font-weight: bold;
    }

    .mv-bn span {
        display: table-cell;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        text-align: center;
        vertical-align: middle;
    }

    .mv-bn font  {
        line-height: 1;
        font-family: "futura-pt", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 20px;
        /*color: #f1f167;*/
        color: #ffffff;
    }

    .mv-bn i.icon-down-dir {
        font-size: 14px;
    }

    .mv-bn i.icon-yajirushi-migi {
        font-size: 20px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * fixed-entry
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fixed-entry {
    position: fixed;
    bottom: 30px;
	right: 0;
	z-index: 100;
    display: none;
	width: 50px;
	height: 250px;
    background: #6c27af;
    background-image: -webkit-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: -o-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: linear-gradient(to top, #5b0a9b, #7d3cc3);
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    box-shadow: 0 0 3px rgba(0,0,0,0.7);
    transition: all 0.3s;
}

.fixed-entry:hover {
    box-shadow: 0 0 3px rgba(0,0,0,0.7);
}

.fixed-entry a {
    position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
	height: 100%;
    padding: 20px 0;
    text-align: center;
}

.fixed-entry a img {
    width: 45%;
    margin: 0 auto 10px;
}

.fixed-entry a span {
    display: block;
    margin: 0 auto;
    writing-mode: vertical-rl;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
}

@media screen and (max-width: 479px) {
    .fixed-entry {
        position: fixed;
        bottom: 30px;
        right: 0;
        z-index: 100;
        display: none;
        width: 40px;
        height: 210px;
    }
    
    .fixed-entry a {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .fixed-entry a img {
        width: 40%;
        margin: 0 auto 10px;
    }
}

.fixed-entry-end {
    position: fixed;
    bottom: 30px;
	right: 0;
	z-index: 100;
    display: none;
	width: 50px;
	height: 250px;
    background: #6c27af;
    background-image: -webkit-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: -o-linear-gradient(bottom, #5b0a9b, #7d3cc3);
    background-image: linear-gradient(to top, #5b0a9b, #7d3cc3);
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    box-shadow: 0 0 3px rgba(0,0,0,0.7);
    transition: all 0.3s;
}

.fixed-entry-end span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
	height: 100%;
    padding: 40px 7px;
    writing-mode: vertical-rl;
    text-align: left;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
}

@media screen and (max-width: 479px) {
     .fixed-entry-end {
        position: fixed;
        bottom: 30px;
        right: 0;
        z-index: 100;
        display: none;
        width: 40px;
        height: 210px;
    }
  
    .fixed-entry-end span {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 30px 4px;
        writing-mode: vertical-rl;
        text-align: left;
        font-size: 11px;
        font-weight: bold;
        color: #ffffff;
    }
 }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * header
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 80px;
    background: rgba(255,255,255,0.8);
}

.header-logo {
	display: none;
	position: absolute;
	z-index: 3;
	top: 15px;
	left: 30px;
	width: 202px;
	height: 50px;
}

.header-logo.page {
	display: block;
}

.header-logo img {
	width: 100%;
}

.hamburger {
	display : block;
	position: fixed;
	z-index : 103;
	right : 15px;
	top   : 10px;
	width : 60px;
	height: 60px;
    border: 1px solid #cccccc;
    border-radius: 5px;
	cursor: pointer;
	text-align: center;
    opacity: 0;
}

.hamburger.page {
    opacity: 1;
}

.hamburger span {
	display : block;
	position: absolute;
	width   : 34px;
	height  : 2px;
	left    : 12px;
	background : #000000;
    border-radius: 10px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 16px;
}

.hamburger span:nth-child(2) {
	top: 28px;
}

.hamburger span:nth-child(3) {
	top: 40px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 28px;
	left: 13px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 28px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 479px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        height: 50px;
        background: rgba(255,255,255,0.8);
    }

    .header-logo {
        display: none;
        position: absolute;
        z-index: 3;
        top: 10px;
        left: 15px;
        width: 121px;
        height: 30px;
    }

    .header-logo.page {
        display: block;
    }

    .header-logo img {
        width: 100%;
    }

    .hamburger {
        display : block;
        position: fixed;
        z-index : 103;
        right : 10px;
        top   : 4px;
        width : 42px;
        height: 42px;
        border: 1px solid #cccccc;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        opacity: 0;
    }

    .hamburger.page {
        opacity: 1;
    }

    .hamburger span {
        display : block;
        position: absolute;
        width   : 24px;
        height  : 2px;
        left    : 8px;
        background : #000000;
        border-radius: 10px;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition   : 0.3s ease-in-out;
        transition        : 0.3s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 11px;
    }

    .hamburger span:nth-child(2) {
        top: 19px;
    }

    .hamburger span:nth-child(3) {
        top: 27px;
    }

    /* スマホメニューを開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
        top : 19px;
        left: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 19px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/* メニュー背景　*/
.globalMenuSp {
    display: block;
	position: fixed;
	z-index : 102;
	top  : 0;
	left : 0;
	width: 100%;
	height: 100vh;
	padding: 30px 15px 0;
	background: rgba(255,255,255,0.95);
	color: #ffffff;
    -webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
	transition: all 0.6s;
}

.globalMenuSp ul {
	margin: 20px auto 0;
	padding: 0;
	width: 100%;
}

.globalMenuSp ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	transition: .4s all;
}

.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}

.globalMenuSp ul li a {
	display: inline-block;
	padding: 5px 0;
	text-decoration : none;
	vertical-align: middle;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}

.globalMenuSp ul li a span {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 20px;
}

/* クリックでjQueryで追加・削除 */
.globalMenuSp.active {
	opacity: 1;
	display: block;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * nav
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav {
	display: none !important;
	position: absolute;
	z-index: 3;
	top: 12px;
	right: 30px;
	width: auto;
	margin: 0 auto;
	padding: 0;
	line-height: 1;
}

.nav.page {
	display: block;
}

.nav ul {
	position: relative;
	width: auto;
	margin: 0 auto;
	padding: 0px;
	text-align: left;
	line-height: 1;
	font-size: 0; /*これだけでOK！*/
}

.nav ul li {
	position: relative;
	display: inline-block;
	height: 100%;
	margin: 0 20px;
	padding: 0;
	list-style-type: none;
	text-align: center;
	vertical-align: middle;
	font-size: 12px; /* フォントサイズ0になっているので指定する */
}

.nav ul li a {
	position: relative;
	display: block;
	height: 100%;
	margin: 0;
	padding: 0;
    line-height: 1.5;
	font-size: 12px;
	color: #000000;
	transition: all 0.3s;
}

.nav ul li a span {
	font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
}

.nav ul li a:hover {
	position: relative;
	text-decoration: none;
	color: #0473CF;
}

.nav ul li a:before {
	content: "\E840";
	position: absolute;
	bottom: -20px;
	left: 50%;
	display: inline-block;
	width: 30px;
	height: 30px;
    margin-left: -15px;
	line-height: 30px;
	text-align: center;
	font-family: 'bee-webfont2023-ver2', sans-serif;
	font-size: 10px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * footer
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
    display: block;
	position: relative;
	width: 100%;
	background: #000000;
	color: #ffffff;
}

footer a {
	color: #ffffff;
}

footer a:hover {
	color: #ffffff;
}

.footer-to-top {
	width: 100%;
	height: 50px;
    margin: 0 auto;
}

.footer-to-top a {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
    border-bottom: 1px solid #333333;
	background: #000000;
    text-align: center;
    line-height: 49px;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}

.footer-to-top a:hover {
    text-decoration: none;
}

.footer-contents {
	position: relative;
    display: block;
	width: 100%;
	margin: 0 auto;
    padding: 30px 0;
}

.footer-contact {
    position: relative;
    width: 100%;
    padding: 15px;
    /*background: #ff0000;*/
}

.footer-sns {
    position: relative;
    width: 100%;
    padding: 15px;
    /*background: #0079FF;*/
    text-align: center;
}

.footer-insta {
    position: relative;
    width: 100%;
    padding: 0;
    /*background: #FFD700;*/
    text-align: center;
}

.footer-contact-btn {
    margin: 0;
}

.footer-contact-btn a {
    position: relative;
    display: block;
    width: 240px;
    height: 60px;
    margin: 0 auto;
    padding-left: 48px;
    border: 1px solid #ffffff;
    line-height: 58px;
    text-align: center;
    font-size: 12px;
    transition: all 300ms;
}

.footer-contact-btn a:hover {
    background: rgba(255,255,255,0.3);
    text-decoration: none;
}

.footer-contact-btn a:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 15px;
    width: 38px;
    height: 24px;
    background: url('../../images/icon-mail-white.svg') center center no-repeat;
    background-size: 38px 24px;
}

.footer-contact-btn a span {
    display: inline-block;
    margin-right: 10px;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
}

.footer-sns-title {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 20px;
}

.footer-sns-icon {
    display: inline-block;
    height: 40px;
    margin: 0 10px 0;
    line-height: 1;
    font-size: 30px;
    transition: all 300ms;
}

.footer-sns-icon.insta {
    font-size: 32px;
}

.footer-sns-icon.fb {
    vertical-align: -2px;
    font-size: 38px;
}

.footer-sns-icon:hover {
    opacity: 0.7;
}

.footer-link-text {
    display: inline;
    margin-bottom: 0;
    height: auto;
    line-height: 1.5;
    font-size: 12px;
}

.footer-link-text a:hover {
    text-decoration: none;
}

.copyright {
	position: relative;
	padding: 15px 0;
	width: 100%;
	text-align: center;
}

.copyright small {
	line-height: 1;
	font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #ffffff;
}

section {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

section p {
	line-height: 1.8;
	font-size: 14px;
}

section ul li {
	font-size: 14px;
}

section img {
	/*max-width: 80rem;*/
}

section a {
	color: #0473CF;
}

section a:hover {
	text-decoration: underline;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * heading
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.top-h2 {
	position: relative;
    display: block;
	line-height: 1.5;
	font-size: 14px;
}

.top-h2 span {
	position: relative;
    display: block;
    margin-right: 0;
	line-height: 1;
	font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 34px;
}

.top-h3 {
	position: relative;
    margin-top: 40px;
	margin-bottom: 10px;
    padding-left: 35px;
	line-height: 1;
	font-size: 18px;
	font-weight: bold;
    color: #0473CF;
}

.top-h3:before {
    content: "";
	position: absolute;
    top: 8px;
    left: 0;
    width: 25px;
    height: 1px;
    background: #0473CF;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * common parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

hr {
	display: block;
	width: 100%;
	height: 1px;
	margin: 20px auto;
	background-color: rgba(255,255,255,0.2);
	border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}

.link-btn {
	position: relative;
	margin: 0;
	padding: 15px 20px 15px 50px;
	border-radius: 100px;
	background: #0473CF;
	line-height: 1;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
	color: #ffffff;
	transition: all 300ms linear;
}

.link-btn:hover {
	text-decoration: none;
    color: #ffffff;
	opacity: 1;
}

.link-btn:before {
    content: "\E85D";
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: 'bee-webfont2023-ver2';
    font-size: 16px;
    color: #ffffff;
}

.link-btn.bigpurple {
	position: relative;
	margin: 0;
	padding: 20px 40px 20px 70px;
	border-radius: 100px;
	background: #7d3cc3;
	line-height: 1;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
	color: #ffffff;
	transition: all 300ms linear;
}

.link-btn.bigpurple:before {
    content: "\E85D";
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'bee-webfont2023-ver2';
    font-size: 16px;
    color: #ffffff;
}

.link-btn.bigblue {
	position: relative;
	margin: 0;
	padding: 20px 40px 20px 70px;
	border-radius: 100px;
	background: #0473CF;
	line-height: 1;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
	color: #ffffff;
	transition: all 300ms linear;
}

.link-btn.bigblue:before {
    content: "\E85D";
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'bee-webfont2023-ver2';
    font-size: 16px;
    color: #ffffff;
}

@media screen and (max-width: 479px) {
    .link-btn.bigpurple {
        position: relative;
        margin: 0;
        padding: 15px 20px 15px 50px;
        border-radius: 100px;
        background: #7d3cc3;
        line-height: 1;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        transition: all 300ms linear;
    }

    .link-btn.bigpurple:before {
        content: "\E85D";
        position: absolute;
        top: 15px;
        left: 20px;
        font-family: 'bee-webfont2023-ver2';
        font-size: 16px;
        color: #ffffff;
    }
    
    .link-btn.bigblue {
        position: relative;
        margin: 0;
        padding: 15px 20px 15px 50px;
        border-radius: 100px;
        background: #0473CF;
        line-height: 1;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        transition: all 300ms linear;
    }

    .link-btn.bigblue:before {
        content: "\E85D";
        position: absolute;
        top: 15px;
        left: 20px;
        font-family: 'bee-webfont2023-ver2';
        font-size: 16px;
        color: #ffffff;
    }
}

blockquote {
	width: 90%;
	margin: 20px auto;
	padding: 30px;
	background: #fafafa;
	line-height: 1.5em;
	border: 3px solid #dddddd;
	border-radius: 6px;
}

.note {
	margin: 20px auto;
	line-height: 1.5em;
	font-size: 14px;
}

.note dt {
	position: relative;
}

.note dt span {
	position: absolute;
}

.note dd {
	padding-left: 1em;
	padding-bottom: 10px;
}

.atten {
	width: 100%;
	margin: 20px auto;
	padding: 20px;
	background: #fafafa;
	line-height: 1.5;
	border: 1px solid #dddddd;
    box-shadow: 0 0 0 3px #f7f7f7;
	border-radius: 6px;
}

/*-------------------------  modal ------------------------- */

.lock {
    overflow: hidden;
}

.modal-overlay {
    z-index: 10000;
    position: fixed;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 120%;
	background: rgba(255,255,255,0.98);
	opacity: 0;
}

.is-ie .modal-overlay,
.is-edge .modal-overlay {
	background: #ffffff;
	opacity: 1 !important;
}

.modal-wrap {
    z-index: 10001;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
	/*background: rgba(255,0,0,0.5);*/
}

.modal-content {
    display: none;
	position: relative;
	z-index: 10002;
    width: 80%;
	max-width: 700px;
    margin: 50px 0;
}

.modal-close {
	display: block;
	position: fixed;
	top: 30px;
	right: 30px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 30px;
    color: #000000;
	cursor: pointer;
}

.modal-pic {
	position: relative;
	width: 150px;
	height: 150px;
	margin: 20px auto 30px;
}

.modal-pic img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.modal-name-eng {
	margin: 0 auto 20px;
	text-align: center;
    line-height: 1;
	font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
	color: #35404f;
}

.modal-name {
	margin: 0 auto 20px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	font-weight: bold;
}

.modal-name .small {
	font-size: 14px;
}

.modal-company {
    text-align: center;
	line-height: 1.5;
	font-size: 12px;
}

.modal-charge {
    text-align: center;
}

.modal-charge span {
    display: inline-block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 30px;
    background: #0473CF;
    text-align: center;
	line-height: 1.2;
	font-size: 12px;
    color: #ffffff;
}

.modal-profile {
	line-height: 1.8;
	font-size: 12px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *top page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  top-wrapper ------------------------- */

.top-wrapper {
	overflow: hidden;
	position: relative;
	background: #ffffff;
}

.top-content {
	position: relative;
	width: 100%;
	height: 100%;
}

/*-------------------------  section intro ------------------------- */

#section-top-intro {
    position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
}

.section-top-intro-left {
    position: relative;
    display: block;
    width: 100%;
    padding: 60px 30px 30px;
    background: #17FFB9;
}

.section-top-intro-right {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 30px 60px;
    background: #0473CF;
}

/*
.section-top-intro-right:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 129px;
    height: 213px;
    background: url('../images/section-top-intro-before.svg') left bottom no-repeat;
	background-size: cover;
}

.section-top-intro-right:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 212px;
    height: 212px;
    background: url('../images/section-top-intro-after.svg') left bottom no-repeat;
	background-size: cover;
}
*/

.top-intro-copy {
    position: relative;
    left: auto;
    transform: none;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding-right: 0;
    line-height: 1.5;
    font-size: 5.5vw;
    font-weight: bold;
    color: #0473CF;
}

.top-intro-bodycopy {
    position: relative;
    left: auto;
    transform: none;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 4vw;
    font-weight: bold;
    color: #ffffff;
}

@media screen and (min-width: 479px) {
    .top-intro-copy {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        width: auto;
        height: auto;
        margin: 0;
        margin-left: -65px;
        padding-right: 0;
        line-height: 1.5;
        font-size: 28px;
        font-weight: bold;
        color: #0473CF;
    }
    
    .top-intro-bodycopy {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
        width: auto;
        height: auto;
        margin: 0 auto;
        line-height: 1.5;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
    }
}

/*-------------------------  section about ------------------------- */

#section-top-info {
	display: block;
	width: 100%;
	margin: 0 auto;
    padding: 50px 50px 0;
}

.top-info-bn {
    width: 100%;
    margin-bottom: 100px;
}

.top-info-bn img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: all 300ms;
}

@media screen and (max-width: 479px) {
    .top-info-bn {
        width: 100%;
        margin-bottom: 50px;
    }

    .top-info-bn img {
        width: 100%;
        border-radius: 4px;
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        transition: all 300ms;
    }
}

.info-table-wrap {
    display: block;
	width: 100%;
	margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.info-table {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
    /*border-bottom: 1px solid #eeeeee;*/
}

.info-table.bbnone {
    border-bottom: none;
}

.info-table-left {
    position: relative;
    width: 20%;
    padding: 15px 0;
    text-align: left;
}

.info-table-left p {
    margin-bottom: 0;
    line-height: 1.5;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #0473CF;
}

.info-table-right {
    position: relative;
    width: 80%;
    padding: 15px 0;
}

.info-table-right p {
    margin-bottom: 0;
    line-height: 1.5;
}

@media screen and (max-width: 479px) {

    #section-top-info {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 30px 30px 30px;
    }
    
    .info-table-wrap {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 15px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .info-table {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        /*border-bottom: 1px solid #eeeeee;*/
    }
    
    .info-table-left {
        position: relative;
        display: block;
        width: 100%;
        padding: 0 0 5px;
        text-align: left;
    }

    .info-table-left p {
        margin-bottom: 0;
        line-height: 1;
        font-family: "futura-pt", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
        color: #0473CF;
    }

    .info-table-right {
        position: relative;
        width: 100%;
        padding: 0;
    }
}

/*-------------------------  section about ------------------------- */

#section-top-about {
	display: block;
	width: 100%;
	margin: 0 auto;
    padding: 50px 0;
}

.section-top-about-wrap {
	display: block;
	width: 100%;
	margin: 0 auto;
    padding: 0 0 50px;
}

.section-top-about-left {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 50px;
}

.section-top-about-right {
    position: relative;
    display: block;
    width: 100%;
    padding: 50px 0 0;
}

.section-top-about-right > div {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.section-top-about-right > div img {
    width: 100%;
}

.about-mov-wrap {
    position: relative;
    width: calc(100% - 100px);
    margin: 0 auto;
}

.about-mov-wrap.interview {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 479px) {
    .section-top-about-left {
        padding: 0 30px;
    }

    .section-top-about-right {
        padding: 30px 0 0;
    }

    .section-top-about-right > div {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-mov-wrap {
        position: relative;
        width: calc(100% - 60px);
        margin: 0 auto;
    }
    
    .about-mov-wrap.interview {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
}

/*-------------------------  section features ------------------------- */

#section-top-project-ex {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

.project-ex-box-wrap:after {
	content: "";
    display: block;
    width: 48%;
}

.project-ex-box {
	position: relative;
	width: 48%;
	height: auto;
	margin-bottom: 30px;
    padding: 0 25px 25px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
	outline: none;
}

.project-ex-box-title {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    font-weight: bold;
}

.project-ex-box-desc {
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: 12px;
}

@media screen and (max-width: 479px) {
     #section-top-project-ex {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }

     .project-ex-box-wrap {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .project-ex-box-wrap:after {
        content: "";
        display: none;
        width: 100%;
    }

    .project-ex-box {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        padding: 0 15px 15px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        outline: none;
    }
}

/*-------------------------  section features ------------------------- */

#section-top-theme {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

@media screen and (max-width: 479px) {
     #section-top-theme {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }
}

/*-------------------------  section features ------------------------- */

#section-top-features {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

.features-box {
	position: relative;
	z-index: 1;
	width: 48%;
    margin-bottom: 30px;
    padding: 60px 30px 30px 30px;
    border-radius: 20px;
    background: #0473CF;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    color: #ffffff;
}

@media screen and (max-width: 479px) {

    #section-top-features {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }

    .features-box-wrap {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .features-box {
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
        margin-bottom: 30px;
        padding: 15px 15px 15px 15px;
        border-radius: 10px;
        background: #0473CF;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        color: #ffffff;
    }
}

.features-box::before {
    position: absolute;
    top: 0;
    left: 15px;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color: #ffffff;
}

.features-box:nth-of-type(1):before {
    content: "1";
}

.features-box:nth-of-type(2):before {
    content: "2";
}

.features-box:nth-of-type(3):before {
    content: "3";
}

.features-box:nth-of-type(4):before {
    content: "4";
}

.features-box-img {
    margin-bottom: 10px;
    text-align: center;
}

.features-box-img img {
    width: 50%;
}

@media screen and (max-width: 479px) {
    .features-box-img img {
        width: 40%;
    }
}

.features-box-title {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    font-weight: bold;
}

.features-box-desc {
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: 12px;
}

.features-box-desc a {
    text-decoration: underline;
    color: #ffffff;
}

/*-------------------------  section mentors ------------------------- */

#section-top-mentors {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

.mentors-box-wrap:after {
	content: "";
    display: block;
    width: 48%;
}

.mentors-box-wrap.wide:after {
	content: "";
    display: block;
    width: 48%;
}

.mentors-box {
	position: relative;
	width: 48%;
	height: auto;
	margin-bottom: 30px;
    padding: 25px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
	outline: none;
}

.mentors-box.wide {
	position: relative;
	width: 48%;
	height: auto;
	margin-bottom: 30px;
    padding: 15px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
	outline: none;
}

.mentors-box.extra-wide {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
    padding: 15px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
	outline: none;
}

.mentors-box-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;    
}

.mentors-box-pic {
    width: 130px;
}

.mentors-box-pic img {
    width: 130px;
    border-radius: 50%;
}

.mentors-box-text {
    padding-left: 20px;
}

.mentors-box-eng {
    margin-bottom: 10px;
    line-height: 1;
    text-align: left;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    color: #35404f;
}

@media screen and (max-width: 780px) {
    .mentors-box-eng.small {
        font-size: 20px;
    }
}

.mentors-box-name {
    margin-bottom: 10px;
    line-height: 1;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.mentors-box-company {
    text-align: left;
}

.mentors-box-link {
    text-align: left;
}

@media screen and (max-width: 479px) {
     #section-top-mentors {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }

     .mentors-box-wrap {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .mentors-box-wrap:after {
        content: "";
        display: none;
        width: 100%;
    }
    
    .mentors-box-wrap.wide:after {
        content: "";
        display: none;
        width: 100%;
    }

    .mentors-box {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        padding: 15px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        outline: none;
    }
    
    .mentors-box.wide {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        padding: 15px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        outline: none;
    }
    
    .mentors-box.extra-wide {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        padding: 15px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        outline: none;
    }

    .mentors-box-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;    
    }

    .mentors-box-pic {
        width: 100px;
    }

    .mentors-box-pic img {
        width: 100px;
        border-radius: 50%;
    }
    
    .mentors-box-pic span {
        display: inline-block;
        margin-top: 10px;
        padding: 5px;
        border-radius: 5px;
        background: #0473CF;
        line-height: 1.2;
         font-size: 10px;
        color: #ffffff;
    }

    .mentors-box-text {
        padding-left: 20px;
    }

    .mentors-box-eng {
        margin-bottom: 10px;
        line-height: 1;
        font-family: "futura-pt", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 24px;
        color: #35404f;
    }
    
    .mentors-box-eng.small {
        font-size: 24px;
    }

    .mentors-box-name {
        margin-bottom: 10px;
        line-height: 1;
        font-size: 14px;
        font-weight: bold;
    }

    .mentors-box-name span {
        font-size: 12px;
    }

    .mentors-box-company {
        margin-bottom: 10px;
        line-height: 1.5;
        font-size: 10px;
    }

    .mentors-box-link {
        margin-bottom: 0;
        line-height: 1;
    }

    .mentors-box-link a {
        position: relative;
        display: inline-block;
        height: 24px;
        margin: 0;
        padding: 0 10px 0 25px;
        border-radius: 30px;
        background: #e0e0e0;
        line-height: 24px;
        font-size: 12px;
        font-weight: bold;
        color: #000000;
        transition: all 300ms;
        cursor: pointer;
    }

    .mentors-box-link a:before {
        position: absolute;
        content: "\E8C9";
        top: 4px;
        left: 6px;
        height: 16px;
        width: 16px;
        line-height: 16px;
        text-align: center;
        font-family: 'bee-webfont2023-ver2', sans-serif;
        font-size: 15px;
    }

    .mentors-box-link a:hover {
        background: #000000;
        text-decoration: none;
        color: #ffffff;
    }
}

/*-------------------------  section program ------------------------- */

#section-top-program {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 30px;
}

.program-box {
	position: relative;
	width: 48%;
}

.program-box.triple {
	position: relative;
	width: 48%;
}

.program-box-title {
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 479px) {
    #section-top-program {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 30px;
    }

    .program-box-wrap {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .program-box {
        position: relative;
        width: 100%;
    }
    
    .program-box.triple {
        position: relative;
        width: 100%;
    }

    .program-box-pic {
        margin-bottom: 10px;
    }

    .program-box-pic img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .program-box-title {
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.5;
        font-size: 16px;
        font-weight: bold;
    }

    .program-box-desc {
        margin-bottom: 40px;
        line-height: 1.5;
        font-size: 12px;
    }

    .program-box-desc span {
        font-size: 10px;
    }
}

.program-schedule-desc {
    display: block;
    margin-bottom: 5px;
    line-height: 1;
    font-size: 12px;
    color: #ff0000;
}

.program-schedule {
    margin-bottom: 0;
    padding-bottom: 10px;
    overflow-x: scroll;
}

.program-schedule img {
    width: 150%;
}

@media screen and (max-width: 479px) {
    .program-schedule img {
        width: 230%;
    }
}

.program-theme {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.program-theme-left {
    position: relative;
    width: 50%;
    padding-right: 50px;
}

.program-theme-right {
    position: relative;
    width: 50%;
}

.program-theme-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.program-theme-title {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 479px) {
    .program-theme {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-align: center;/*上下中央*/
        -ms-flex-align: center;
        align-items: center;
        flex-direction: column; /*縦並び*/
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #eeeeee;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .program-theme-left {
        position: relative;
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    .program-theme-right {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
        order: 1;
    }

    .program-theme-right img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .program-theme-title {
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.5;
        font-size: 16px;
        font-weight: bold;
    }
    
    .program-theme-list li {
        line-height: 1.5;
        font-size: 12px;
    }
}


/*-------------------------  section 1st-batch ------------------------- */

#section-top-selected {
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 30px;
}

.digest-1st-batch {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    -webkit-box-align: center;/*上下中央*/
	-ms-flex-align: center;
    align-items: center;
	width: 100%;
	margin: 0 auto;
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.digest-1st-batch-left {
    position: relative;
    width: 50%;
    padding-right: 50px;
}

.digest-1st-batch-right {
    position: relative;
    width: 50%;
}

.digest-1st-batch-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

@media screen and (max-width: 479px) {
    #section-top-selected {
        width: 100%;
        margin: 50px auto 0;
        padding: 0 30px 30px;
    }

    .digest-1st-batch {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-align: center;/*上下中央*/
        -ms-flex-align: center;
        align-items: center;
        flex-direction: column; /*縦並び*/
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        border: 1px solid #eeeeee;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .digest-1st-batch-left {
        position: relative;
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    .digest-1st-batch-right {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }

    .digest-1st-batch-right img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
}


/*-------------------------  section app ------------------------- */

#section-top-app {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 0 50px;
}

.section-top-app-wrap {
    margin-left: 0;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #0473CF;
    color: #ffffff;
}

.section-top-app-inner {
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    color: #000000;
}

@media screen and (max-width: 479px) {
     .section-top-app-wrap {
        margin-left: 0;
        padding-top: 50px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 50px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background: #0473CF;
        color: #ffffff;
    }
    
    .section-top-app-inner {
        padding: 15px;
        border-radius: 15px;
        background: #ffffff;
        color: #000000;
    }
}

.app-table {
	display: block;
	margin: 0 auto 40px;
}

.app-table-left {
    position: relative;
    width: 100%;
}

.app-table-right {
    position: relative;
    width: 100%;
    padding: 0;
}

.app-table-title {
    display: inline-block;
    width: 150px;
    padding: 10px 0 10px 15px;
    border-radius: 100px;
    background: #0473CF;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.app-table-list {
    margin: 7px 0 0;
}

.app-table-list li {
    line-height: 1.5;
    font-size: 14px;
}

.app-table-list li span {
    font-size: 14px;
}

.app-table-list-ol {
    margin: 7px 0 0;
    list-style-type: none !important;
    counter-reset: cnt;
}

.app-table-list-ol li {
    margin: 0 !important;
    line-height: 1.5;
    font-size: 14px;
    list-style-type: none !important;
    counter-increment: cnt;
}

.app-table-list-ol li::before {
    content: "（" counter(cnt) ")"
}

.app-table-list-ol li span {
    font-size: 14px;
}

.app-link {
    position: relative;
    display: block;
    width: 280px;
    height: 60px;
    margin: 0 auto;
    padding-right: 0;
    border: 2px solid #0473CF;
    border-radius: 100px;
    text-align: center;
    line-height: 56px;
    font-size: 16px;
    font-weight: bold;
    color: #0473CF;
    transition: all 300ms;
}

.app-link:before {
    position: absolute;
    content: "\E8C7";
    top: 19px;
    right: 15px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-family: 'bee-webfont2023-ver2', sans-serif;
	font-size: 20px;
}

.app-link:hover {
    background: none;
    text-decoration: none;
    color: #0473CF;
}

.app-link:hover:before {
    top: 19px;
    right: 15px;
}


@media screen and (max-width: 479px) {
     .app-link {
        position: relative;
        display: block;
        width: 100%;
        height: 50px;
        margin: 0 auto;
        padding-right: 0;
        border: 2px solid #0473CF;
        border-radius: 100px;
        text-align: center;
        line-height: 46px;
        font-size: 14px;
        font-weight: bold;
        color: #0473CF;
        transition: all 300ms;
    }

    .app-link:before {
        position: absolute;
        content: "\E8C7";
        top: 15px;
        right: 10px;
        height: 16px;
        width: 16px;
        line-height: 16px;
        text-align: center;
        font-family: 'bee-webfont2023-ver2', sans-serif;
        font-size: 16px;
        transition: all 300ms;
    }
    
    .app-link:hover:before {
        top: 10px;
        right: 10px;
    }
}

/*-------------------------  section FAQ ------------------------- */

#section-top-faq {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

.faq-box {
    position: relative;
    margin-bottom: 15px;
    padding: 15px 50px 15px 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.faq-box:before {
    position: absolute;
    content: "Q.";
    top: 15px;
    left: 15px;
    height: 24px;
    width: 40px;
    line-height: 24px;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 24px;
    color: #0473CF;
}

.faq-icon {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    height: 23px;
    width: 23px;
    background: url('../../images/icon-plus.svg') center center no-repeat;
	background-size: 23px 23px;
}

.faq-icon.open {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    height: 23px;
    width: 23px;
    background: url('../../images/icon-minus.svg') center center no-repeat;
	background-size: 23px 23px;
}

.faq-question {
    line-height: 1.5;
    font-size: 14px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    position: relative;
    margin-top: 15px;
    margin-right: -35px;
    padding: 15px 15px 15px 50px;
    border: 1px solid #eeeeee;
    line-height: 1.5;
    font-size: 14px;
}

.faq-answer:before {
    position: absolute;
    content: "A.";
    top: 15px;
    left: 15px;
    height: 24px;
    width: 40px;
    margin-top: 0;
    line-height: 24px;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 24px;
    color: #35404f;
}

@media screen and (max-width: 479px) {
    #section-top-faq {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }
}

/*-------------------------  section ORG ------------------------- */

#section-top-org {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

.org-table {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
    border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 479px) {
    #section-top-org {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }

    .org-table {
        display: block;
        width: 100%;
        margin: 0 auto;
        border-bottom: 1px solid #eeeeee;
    }

    .org-table.bbnone {
        border-bottom: none;
    }

    .org-table-left {
        position: relative;
        width: 100%;
        padding: 15px 0 0;
        text-align: center;
    }

    .org-table-left img {
        width: 50%;
    }

    .org-table-right {
        position: relative;
        width: 100%;
        padding: 15px 0;
    }

    .org-table-right p {
        margin-bottom: 0;
        line-height: 1.5;
    }
}

/*-------------------------  section Sponsors ------------------------- */

#section-top-sponsors {
    display: block;
    width: 100%;
	margin: 0 auto;
    padding: 0 50px 50px;
}

@media screen and (max-width: 479px) {
    #section-top-sponsors {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 50px;
    }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  page-wrapper ------------------------- */

.page-wrapper {
	overflow: hidden;
	position: relative;
	background: #ffffff;
}

.page-content {
	position: relative;
	width: 100%;
	height: 100%;
}

.page-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	margin: 80px auto 0;
}

@media screen and (max-width: 479px) {
     .page-header {
        margin: 50px auto 0;
    }   
}

.page-header-left {
    position: relative;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;/*左右中央*/
	-ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;/*上下中央*/
	-ms-flex-align: center;
    align-items: center;
    width: 60%;
    padding: 50px 0;
    background: #17FFB9;
}

/*
@media screen and (max-width: 374px) {
    .page-header-left {
        width: auto;
        padding: 50px 10px;
    }   
}
*/

.page-header-right {
    position: relative;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;/*左右中央*/
	-ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;/*上下中央*/
	-ms-flex-align: center;
    align-items: center;
    width: 40%;
    padding: 50px 0;
    background: #0473CF;
}

.page-header‐h2 {
    margin-bottom: 0;
    line-height: 1.5;
	font-size: 12px;
    color: #0473CF;
}

.page-header‐h2 span {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 24px;
    white-space: nowrap;
}

.section-page {
    width: 100%;
	margin: 0 auto;
    padding: 50px 50px;
}

.section-page.wide {
    width: 100%;
	margin: 0 auto;
    padding: 50px 50px;
}

@media screen and (max-width: 479px) {
    .section-page {
        width: 100%;
        margin: 0 auto;
        padding: 50px 30px;
    }
    
    .section-page.wide {
        width: 100%;
        margin: 0 auto;
        padding: 50px 30px;
    }
}

.weaken {
	font-size: 10px;
}

.lh18 {
	line-height: 1.5;
}

.purple-color {
	color: #5c28f2;
}

.remarks-wrap {
	width: 90%;
	max-width: 700px;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
}

.remarks-wrap.wide {
	width: 100%;
	max-width: 100%;
	padding: 40px;
}

table {
    display: block;
	border-collapse : collapse ;
	position: relative;
	width: 100%;
	margin: 0 auto;
	border-top: 1px solid #e3e3e3;
	font-size: 14px;
}

table tbody {
    display: block;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

table tr {
    display: block;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

table.bnone {
	border-top: none;
}

.left-td {
	position: relative;
    display: block;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #e3e3e3;
	vertical-align: middle;
	font-weight: bold;
}

.left-td.bnone {
	border-bottom: none;
	background: none;
}

.right-td {
	position: relative;
	display: block;
	width: 100%;
	padding: 10px 0 30px;
	border-bottom: 1px solid #e3e3e3;
	vertical-align: middle;
}

.right-td.bnone {
	border-bottom: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px;
	outline: none;
	border: none;
	background: #f0f4f7;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

input.auto {
	width: auto;
}

input.short {
	width: 150px;
}

input.med {
	width: 100%;
}

label {
	display: inline;
	vertical-align: -2px;
	padding-left: 7px;
	cursor: pointer;
}

textarea {
	width: 100%;
	margin: 0;
	padding: 10px;
	resize: none;
	outline: none;
	border: none;
  	background: #f0f4f7;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}
 
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	box-shadow: 0 0 0 1px #0473CF;
	background: #ffffff;
}

.is-touch-media input[type=text]:focus,
.is-touch-media input[type=tel]:focus,
.is-touch-media input[type=email]:focus,
.is-touch-media input[type=password]:focus,
.is-touch-media textarea:focus {
		border: 1px solid #0473CF;
		box-shadow: none;
}

:placeholder-shown { color: #999999; }

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder { color: #999999; }

/* Firefox 18- */
:-moz-placeholder { color: #999999; }

/* Firefox 19+ */
::-moz-placeholder { color: #999999; }

/* IE 10+ */
:-ms-input-placeholder { color: #999999; }

select {
	-moz-appearance: none;
  	-webkit-appearance: none;
  	appearance: none;
	width: auto;
	height: auto;
	padding: 10px;
	border: none;
	border-radius: 0;
	outline: none;
	background: #f0f4f7;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	display: inline-block;
	outline: none;
	border: none;	
	line-height: 1;
	vertical-align: middle;
    font-family: "YuGothic", "游ゴシック","dnp-shuei-gothic-gin-std","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3","Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
	cursor: pointer;
}

.button {
	outline:none;
	width: 80%;
	height: 50px;
	border: none;
	background: #5c646f;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.button:hover {
	background: #454b53;
}

.button:disabled {
	background: #5c646f;
	color: #7c8693;
}

.check-submit-wrap {
	margin: 40px 0;
	text-align: center;
}

.check-submit {
    display: inline;
}

.check-submit-final {
    display: inline;
}

.check-submit button {
	outline: none;
	width: 100px;
	height: 40px;
	margin: 0 20px;
	border: none;
	background: #5c646f;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
	transition: all 0.3s;
}

.check-submit button:hover {
	background: #454b53;
}

.check-submit button:disabled {
	background: #5c646f;
	color: #7c8693;
}

.check-submit-final .button.final-event-btn {
	height: 54px;
	padding: 0 80px;
	border-radius: 3px;
	background: rgba(10,232,246,0.2);
	border: 1px solid #07bac6;
	font-size: 16px;
	font-weight: bold;
	color: #0ae8f6;
}

.check-submit-final .button.final-event-btn:hover {
	background: rgba(10,232,246,0.4);
	box-shadow: 0 0 10px #0ae8f6;
	color: #0ae8f6;
}

.form-required {
	color: #ff00b0;
	font-weight: lighter;
}

.form-required2 {
	color: #be00be;
	font-weight: lighter;
}

.str-count-wrap {
	position: relative;
	width: 100%;
	margin-bottom: 0;
	text-align: right;
}

.str-count-wrap.short {
	display: inline-block;
	width: auto;
	margin-bottom: 0;
}

.str-count {
	margin-left: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #cccccc;
}

.str-count-subscript {
	font-size: 12px;
	color: #cccccc;
}

.address-org {
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
}

.page-h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.page-h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

p.page-terms {
    line-height: 1.8;
}

ul,ol {
    margin: 15px 0;
}

ul.page-list li {
    font-size: 14px;
}

ol.page-list li {
	font-size: 14px;
}

ol.page-list li ul li {
	list-style-type: disc;
}

/*-------------------------404 page ------------------------- */

.not-found-message {
	margin: 15rem auto;
	width: 100%;
	text-align: center;
	color: #555555;
}

.not-found-num {
	line-height: 1;
	letter-spacing: -2rem;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 30rem;
}

.not-found-message a {
	margin: 0 20px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #ffffff;
}

.not-found-message a:hover {
	text-decoration: underline;
}

/*-------------------------  page 1st-period ------------------------- */

.interview-wrap {
	display: block; 
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.interview-box-wrap:after {
	content: "";
    display: block;
    width: 48%;
}

.interview-box {
	position: relative;
	width: 100%;
	height: auto;
    padding: 15px 15px 30px;
    background: #ffffff;
    border-radius: 10px;
    border: 3px solid #0473CF;
    overflow: hidden;
	outline: none;
}

.interview-box-inner {
    display: block;    
}

.interview-box-text {
    width: 100%;
}

.interview-box-name {
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
	font-weight: bold;
    color: #0473CF;
}

.interview-box-pic {
    width: 100%;
    padding-right: 0;
}

.interview-box-pic img {
    width: 100% !important;
    border-radius: 6px;
}

.tab-radius {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0 auto 50px;
	padding: 0 10px;
}

.tab-radius:after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #e3e3e3;
    z-index: 1;
}

.tab-radius li {
	display: inline-block;
	position: relative;
	z-index: 0;
	width: 45%;
	height: 30px;
	margin: 0 5px 0 0;
	border: 1px solid #e3e3e3;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background: #eceeef;
	box-shadow: 1px 1px -2px #f5f6f7;
	line-height: 29px;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	color: #a1a8b2;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.tab-radius li.active {
	z-index: 2;
	border-bottom-color: #ffffff;
	background: #ffffff;
	color: #0473cf;
}

.tab-radius:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	border-bottom: 1px solid #e3e3e3;
}

.tab-radius li:before,
.tab-radius li:after {
	content: "";
	position: absolute;
	bottom: -1px;
	width: 6px;
	height: 6px;
	border: 1px solid #e3e3e3;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

.tab-radius li:before {
	left: -6px;
	border-bottom-right-radius: 6px;
	border-width: 0 1px 1px 0;
	box-shadow: 2px 2px 0 #eceeef;
}

.tab-radius li:after {
	right: -6px;
	border-bottom-left-radius: 6px;
	border-width: 0 0 1px 1px;
	box-shadow: -2px 2px 0 #eceeef;
}

.tab-radius li.active:before {
	box-shadow: 2px 2px 0 #ffffff;
}

.tab-radius li.active:after {
	box-shadow: -2px 2px 0 #ffffff;
}

.seminar-wrap {
    margin-bottom: 50px;
    padding: 20px 20px 0;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    background: #fafafa;
}

.seminar-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0473CF;
    font-size: 18px;
    font-weight: 600;
    color: #0473CF;
}

.seminar-head-wrap {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.seminar-head-wrap-left {
    position: relative;
    width: 60%;
    padding-right: 20px;
}

.seminar-head-wrap-left p {
    margin-bottom: 0;
    line-height: 2;
}

.seminar-head-wrap-right {
    display: -webkit-box;
	display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;/*左右中央*/
	-ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;/*上下上寄せ*/
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    width: 40%;
    padding: 0;
    text-align: right;
}

.seminar-head-wrap-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.seminar-box-h3 {
    display: inline-block;
    width: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-radius: 100px;
    background: #0473CF;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.report-wrap {
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
	margin: 0 auto;
}

.report-left {
    position: relative;
    width: 50%;
    padding-right: 50px;
}

.report-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.report-right {
    position: relative;
    width: 50%;
}

@media screen and (max-width: 479px) {
.seminar-wrap {
        margin-bottom: 30px;
        padding: 10px 10px 0;
        border: 1px solid #eeeeee;
        border-radius: 10px;
        background: #fafafa;
    }

    .seminar-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #0473CF;
        font-size: 16px;
        font-weight: 600;
        color: #0473CF;
    }
    
    .seminar-head-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column; /*縦並び*/
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
        margin: 0 auto;
        padding-bottom: 20px;
        border-bottom: 1px solid #eeeeee;
    }

    .seminar-head-wrap-left {
        position: relative;
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    .seminar-head-wrap-right {
        display: block;
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        text-align: center;
        order: 1;
    }
    
    .seminar-box-h3 {
        display: inline-block;
        width: 130px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 8px 0;
        border-radius: 4px;
        background: #0473CF;
        text-align: center;
        line-height: 1;
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
    }

    .report-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column; /*縦並び*/
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
        margin: 0 auto;
    }

    .report-left {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .report-left img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .report-right {
        position: relative;
        width: 100%;
    }
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *Google reCAPTCHA
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media screen and (max-width: 479px) {
    .g-recaptcha {
        margin: 40px auto 0;
        width: 240px;
        -webkit-transform:scale(0.8);
        transform:scale(0.8);
        -webkit-transform-Origin:0 0;
        transform-Origin:0 0;
    }
}