@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*===================================================
	RESET
====================================================*/
*{
	outline:none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	background:transparent;
    word-wrap: break-word;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
	width: 100%;
	font-smoothing: antialiased;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
ul, ol {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	text-decoration: none;
	color: inherit;
	transition:0.3s ease;
}
input, select {
	vertical-align:middle;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	line-height: 1.0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

img {
	width:100%;
	vertical-align: bottom;
	line-height: 1.0;
}
.fa, .fas {
    display: inline;
}
.mov {
    position: relative;
    width: 100%;
    padding-top: 63%;
}

.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*===================================================
	root
====================================================*/
:root {
  --main-gap: 56px;
  --sub-gap: 24px;
  --links-color: #6093ff;
}

/* FRAME 769 */
@media screen and (max-width: 769px){
:root {
  --main-gap: 32px;
  --sub-gap: 16px;
}
}

/*===================================================
	FRAME
====================================================*/
body {
    font-size: 16px;
}
.allContain {
    height: 100%;
    font-family: 'Roboto',"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 0.08em;
    font-weight: 400;
    color: #000;
    line-height: 1.6em;
    font-size: min(calc(45 / 1200* 100vw), 100%);
}
.allContain:before{
    content:"";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
}
.bg_black .allContain:before{
    background-color: #000;
}
.bg_red .allContain:before{
    background-color: #81191E;
}
section{
    padding: 60px;
    position: relative;
}
.contentBox{
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: var(--main-gap);
    margin: 0 auto;
    padding: 100px 60px;
    box-sizing: border-box;
    background: #FFF;
}
.contentInner{
    display: flex;
    flex-direction: column;
    gap: var(--sub-gap);
}
.inBox{
    background: #EFEFEF;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: var(--sub-gap);
}
.titBox{

}
figure{

}

/* FRAME 1200 - 771 */
@media screen and (min-width:771px) and ( max-width:1200px) {

}

/* FRAME 770 */
@media screen and (min-width: 770px){

}

/* FRAME 769 */
@media screen and (max-width: 769px){
section {
    padding: 20px;
}
.contentBox {
    padding: 40px 20px;
}
.inBox {
    padding: 20px;
}
.titBox{

}
}

/*===================================================
	TEXT
====================================================*/
h2{
    font-size: 300%;
    line-height: 1.2em;
}
h3{
    font-size: 160%;
    font-weight: 600;
    line-height: 1.2em;
}
h4{
    font-size: 200%;
}
.sideline{
    display: inline-block;
    border-left: 0.3em solid;
    padding-left: 0.3em;
}
.underline{
    display: block;
    padding-bottom: 0.3em;
    border-bottom: 1px solid;
}
.bandline{
    display: inline-block;
    background: #000;
    color: #FFF;
    padding: 8px 16px;
}
.lead{
    font-size: 130%;
    line-height: 1.4em;
}
.txt{
    font-size: 110%;
    line-height: 1.5em;
}
.cautionList{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cautionList li {
    font-size: 80%;
    line-height: 1.5em;
    padding: 0 0 0 15px;
    position: relative;
}
.cautionList li span{
    position: absolute;
    left: 0;
    top: 1px;
}

/* FRAME 769 */
@media screen and (max-width: 769px){
h2 {
    font-size: 200%;
}

h3{
    font-size: 140%;
}
}

/*===================================================
	LINK
====================================================*/
a{
    color: var(--links-color);
}
.innerLink{
    text-decoration: underline;
}
.btn{
    /*text-align: center;*/
}
.btn a{
    display: inline-block;
    max-width: 600px;
    background: var(--links-color);
    color: #FFF;
    text-align: center;
    padding: 20px 60px;
    font-size: 130%;
    font-weight: 500;
    margin: 0 auto;
    border-radius: 100px;
}
.btn .ghostBtn{
    background: transparent;
    border: 2px solid var(--links-color);
    color: var(--links-color);
}
.btnList{
    display: flex;
    justify-content: center;
    gap: 16px;
}
.textLink{

}
.textLink a{
    font-weight: 600;
}
.textLink a i{
    margin: 0 0 0 5px;
}
.snsList {
    display: flex;
}
.snsList li {
    width: 25px;
    margin: 0 20px 0 0;
    position: relative;
}
.snsList li a {
    display: block;
}
.snsList li a img{
    filter: invert(1);
    transition:0.3s ease;
}
.snsList li .instaicon{
    filter: invert(1);
    transition:0.3s ease;
    cursor: pointer;
}
.snsList li .links{
    position: absolute;
    top: calc(100% + 8px);
    background: #000000;
    padding: 16px;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
}
.snsList li .links a{
color: #FFF;
}

/* btn 770 */
@media screen and (min-width: 770px){
a:hover{
    filter: brightness(1.3);
}
}

/* btn 769 */
@media screen and (max-width: 769px){
.btnList{
    display: block;
}
.btnList li {
    padding: 0;
    margin: 0 0 20px;
}
.btnList li:last-child{
    margin: 0;
}
.btnList li a{
    width: 100%;
}
}

/*===================================================
  footer
====================================================*/
footer{
    padding: 100px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: calc(100% - 80px);
    margin: 0 auto 40px;
    border-radius: 40px;
}
footer .footerLogo{
    line-height: 0;
    max-width: 260px;
}
footer .credit{
    display: inline-block;
    font-size: 80%;
    font-weight: 500;
}

/* SP-max-769 */
@media screen and (max-width: 769px){
footer{
    padding: 40px;
    gap: 32px;
    width: calc(100% - 48px);
    margin: 0 auto 24px;
}
footer h2.footerLogo{
    line-height: 0;
    max-width: 200px;
}
}
