s@charset "UTF-8";
/*
Theme Name: Global Work 202003
Theme URI:
Author:
Author
Description:
Version: 1.0
License:
License
Tags:
Text Domain:
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* Common Setting */
img {
  vertical-align: top;
}

figure {
  margin: 0px;
}

html {
margin: 0;
}

.pc {
  display: block;
}

.sp {
	display: none;
}

.st_wrap {
	clear: both;
	width:100%;
	max-width: 750px;
	margin:0 auto;
	color: #000000;
	font-size:14px;
	text-align: left;
	overflow: hidden;
}

.prof_box {
	width: 65%;
	margin: auto;
}

.float_box {
	float: left;
	box-sizing: border-box;
	padding: 4%;
	font-size: 13.5px;
	line-height: 1.7;
}

.float_box span {
	font-weight: bold;
	line-height: 2.4;
}

.float_box img {
	width: 100%;
	border-radius: 50%;
}

.ig_box {
	width: 40%;
	margin: 3% auto 8%;
}

.ig_box img {
	width: 100%;
}

.navi_width {
	width: 90%;
	margin: 0 auto 10%;
}

.navi_box {
	float:left;
	width: 20%;
	box-sizing: border-box;
	padding: 0 2%;
}

.navi_box img {
	width: 100%;
}

.navi_box a:hover {
	opacity: 0.7;
}

.main_img {
	float: left;
	width: 33.3333%;
	margin: 0;
	padding: 0;
}

.main_img img {
	width: 100%;
	margin: 0;
	padding: 0;
}


/* モーダルここから */
    /* ボタン */
    .open-btn {
        padding: 0;
        margin: 0;
        border: none;
        cursor: pointer;
		width: 100%;
    }

    .open-btn img {
        padding: 0;
        margin: 0;
		width: 100%;
    }

    .open-btn:hover {
        opacity: 1;
    }

    .close-btn {
        position: absolute;
        top: -1px;
        right: 10px;
        font-size: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
		color: #000;
		z-index: 100;
    }

    /* モーダル背景 */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 1);
		opacity: 0;
        z-index: 100;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .modal a {
        color: #000;
		text-decoration: none;
		line-height: 1.8;
    }

    .modal a:hover {
        opacity: 0.8;
		text-decoration:underline;
    }

    /* モーダル表示状態 */
    .modal.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    /* モーダルの中身*/
    .modal-content {
        background: rgba(79, 79, 79, 0);
        padding: 0;
		margin: 0;
        width: 80vw;
        max-width: 450px;
        text-align: center;
        position: relative;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    .modal-content video {
        width: 100%;
		max-width: 450px;
    }


    /* アニメーション*/
    .modal.active .modal-content {
        animation: fadeInScale 0.4s ease forwards;
    }

    @keyframes fadeInScale {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }



    /* ボタン */
    .open-btn_txt {
        padding: 0;
        margin: 0;
        border: none;
        cursor: pointer;
		width: 100%;
    }

    .open-btn_txt img {
        padding: 0;
        margin: 0;
		width: 100%;
    }

    .open-btn_txt:hover {
        opacity: 1;
    }

    .close-btn_txt {
        position: absolute;
        bottom: 24px;
        right: 50%;
        font-size: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
		color: #000;
		z-index: 100;
    }

    /* モーダル背景 */
    .modal_txt {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
		opacity: 0;
        z-index: 100;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .modal_txt a {
        color: #fff;
		text-decoration: none;
    }

    .modal_txt a:hover {
        opacity: 0.8;
    }

    /* モーダル表示状態 */
    .modal_txt.active_txt {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    /* モーダルの中身*/
    .modal-content_txt {
        background: rgba(79, 79, 79, 0);
        padding: 0;
		margin: 0;
        width: 80vw;
        max-width: 600px;
        text-align: center;
        position: relative;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    /* アニメーション*/
    .modal_txt.active_txt .modal-content_txt {
        animation: fadeInScale 0.4s ease forwards;
    }

    @keyframes fadeInScale {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

.unusable {
    pointer-events: none;
    cursor: not-allowed; /* It doesn't Work */
}
/* モーダルここまで */


.content::-webkit-scrollbar {
	display:none;
}

.modaltxt1 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt1:target {
  display: flex;
}

.modaltxt1 img {
  width: 100%;
}

.modaltxt3 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt3:target {
  display: flex;
}

.modaltxt3 img {
  width: 100%;
}

.modaltxt4 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt4:target {
  display: flex;
}

.modaltxt4 img {
  width: 100%;
}

.modaltxt6 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt6:target {
  display: flex;
}

.modaltxt6 img {
  width: 100%;
}

.modaltxt7 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt7:target {
  display: flex;
}

.modaltxt7 img {
  width: 100%;
}

.modaltxt8 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt8:target {
  display: flex;
}

.modaltxt8 img {
  width: 100%;
}

.modaltxt10 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt10:target {
  display: flex;
}

.modaltxt10 img {
  width: 100%;
}

.modaltxt12 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt12:target {
  display: flex;
}

.modaltxt12 img {
  width: 100%;
}

.modaltxt14 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt14:target {
  display: flex;
}

.modaltxt14 img {
  width: 100%;
}

.modaltxt16 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt16:target {
  display: flex;
}

.modaltxt16 img {
  width: 100%;
}

.modaltxt18 {
  position: fixed;
  top: -15%;
  left: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130%;
  background-color: rgb(0 0 0 / 60%);
}

.modaltxt18:target {
  display: flex;
}

.modaltxt18 img {
  width: 100%;
}

.close {
  position: absolute;
  bottom: -30px;
  right: 50%;
  font-size: 24px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transform: translate(50%, -50%);
  z-index: 100;
}

.modal-wrapper {
  position: relative;
  width: 75%;
  max-width: 450px;
  max-height: 80%;
  padding: 20px;
  margin: auto;
  background-color: rgb(0 0 0 / 0%);
  border-radius: 5px;
  -ms-overflow-style: none;
  scrollbar-width: none;
	text-align:center; 
}

.modal-wrapper a {
	color: #fff;
	font-size: 11px;
	text-decoration: none;
	line-height: 2.0;
}

.modal-wrapper a:hover {
	color: #fff;
	font-size: 11px;
	text-decoration: underline;
}





.clear {
	clear: both;
}

.btn_all{
	display:block;
	width:70%;
	margin:6% auto 6%;
	padding:2% 0;
	text-decoration: none;
	color:#fff;
	font-size:18px;
	line-height: 1.4;
	font-family: 'Noto Serif JP', serif;
}

.btn_all img{
	width: 100%;
}

a.btn_all{
	display:block;
	width:40%;
	margin:5% auto 5%;
	padding:3% 0;
	text-decoration: none;
	color:#fff;
	font-size:16px;
}


.tpo-lp-footer {width: 100%;
}

.tpo-lp-footer__link{
	display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;border-top:1px solid #000;border-bottom:1px solid #000;margin-bottom:clamp(10px, 2.14286vw, 30px);padding:clamp(10px, 3.57143vw, 50px) 10px}
.tpo-lp-footer__link>div{display:flex;justify-content:start;align-items:center;flex-wrap:wrap}
.tpo-lp-footer__link>div>a{display:flex;justify-content:start;align-items:center;flex-wrap:wrap}
.tpo-lp-footer__link>div>a
.border-link{
	border-right:1px solid #000;
	margin-right:clamp(10px, 3.57143vw, 50px);
	padding-right:clamp(10px, 3.57143vw, 50px);
	text-decoration: none;
}

.tpo-lp-footer__link>div>a>div img{display:block;margin-right:clamp(10px, 1.07143vw, 15px)}
.tpo-lp-footer__link>div>a>div img
.link-home{width:clamp(10px, 7.85714vw, 100px)}
.tpo-lp-footer__link>div>a>div img
.link-sns{width:clamp(10px, 1.042857vw, 18px)}
.tpo-lp-footer__link>div>a>p{
	font-size:clamp(10px, 0.8vw, 16px);
	color:#333;
	text-decoration: none;}
.tpo-lp-footer>p{font-size:clamp(10px, .85714vw, 12px);
	text-align:center;
	text-decoration: none;
}


@media only screen and (max-width: 768px) {
.pc {
    display: none !important;
  }
	
.sp {
	display: block;
}
	
.btn_all{
	width:84%;
	margin:7% auto 7%;
}

	
.prof_box {
	width: 90%;
	margin: auto;
}
	
.float_box {
	font-size: 10px;
}
	
    .close-btn {
        top: -1px;
        font-size: 2.3rem;
    }
	
    .modal-content video {
        width: 100%;
		max-width: 600px;
    }

	.tpo-lp-footer{margin:0;padding-bottom:6.66667vw;background-color:#fff;transition:all 0.5s 0s ease}
	.tpo-lp-footer__link{justify-content:center;margin-bottom:6.66667vw;padding:9.33333vw 0}
	.tpo-lp-footer__link>div.order-1{order:1;margin-bottom:9.33333vw}
	.tpo-lp-footer__link>div.order-2{order:2}
	.tpo-lp-footer__link>div>a.border-link{	border-right:1px solid #000;margin-right:5.33333vw;padding-right:5.33333vw}
	.tpo-lp-footer__link>div>a>div img{margin-right:2vw}
	.tpo-lp-footer__link>div>a>div img.link-home{width:22vw}
	.tpo-lp-footer__link>div>a>div img.link-sns{width:5.33333vw}
	.tpo-lp-footer__link>div>a>p{font-size:2.53333vw;text-decoration: none;}
	.tpo-lp-footer>p{font-size:2.66667vw;text-decoration: none;}
	
}
