/* ================================
  Utility CSS - Minimal Starter
  Author: SNK
  Purpose: 共通のスタイル集
================================ */


/* --- Reset（ベーシック） --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased
}

div,
h1,
h2,
h3,
h4,
p {
  text-align: left;
  text-decoration: none;
  scroll-behavior: auto;
  font-feature-settings: "palt"1;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;

}

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%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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;
}

/*イメージ*/
img {
  image-rendering: -webkit-optimize-contrast !important;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-center {
  display: block;
  margin-inline: auto;
}




*:focus {
  outline: none;
}

#wrapper {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #000;

}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden
}

.clearfix {
  min-height: 1px
}


.rightbox {
  float: right;
  height: auto;

}

.leftbox {
  float: left;
  height: auto
}


[id*="trigger"] {
  position: absolute;
  margin-top: 0px;
}






/* --- 表示制御 --- */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inlineblock {
  display: inline-block !important;
}

/* --- メディアクエリ--- */
.hideen-sp {
  display: block !important;
}

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

.visible-tab {
  display: none !important;
}

@media (max-width: 1050px) {
  .hidden-sp {
    display: none !important;
  }

  .visible-sp {
    display: block !important;
  }
}


@media screen and (min-width:768px) and (max-width:1050px) {
  .hidden-tab {
    display: none !important;
  }

  .visible-tab {
    display: block !important;
  }
}

/* --- テキストカラー --- */
.text-primary {
  color: #ff3300;
}

.text-secondary {
  color: #57CAE4;
}

.text-muted {
  color: #666;
}


/* --- テキスト揃え --- */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* --- 余白（例：margin-bottom）--- */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}




.mt-1 {
  margin-top: 0.5% !important;
}

.mt-2 {
  margin-top: 1% !important;
}

.mt-3 {
  margin-top: 5% !important;
}

.mt-4 {
  margin-top: 10% !important;
}



/* --- フォントサイズ--- */
.fz-xs {
  font-size: 0.75rem !important;
}

.fz-sm {
  font-size: 0.95rem !important;
}

.fz-md {
  font-size: 1.2rem !important;
}

.fz-lg {
  font-size: 1.8rem !important;
}

.fz-xl {
  font-size: 3rem !important;
}

.fz-xxl {
  font-size: 3.6rem !important;
}

@media screen and (max-width: 1050px) {
  .fz-xs {
    font-size: 0.75rem !important;
  }

  .fz-sm {
    font-size: 0.95rem !important;
  }

  .fz-md {
    font-size: 1.2rem !important;
  }

  .fz-lg {
    font-size: 1.8rem !important;
  }

  .fz-xl {
    font-size: 9vw !important;
  }

  .fz-xxl {
    font-size: 3.6rem !important;
  }
}





/* --- フレックスレイアウト --- */
.flex {
  display: flex !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-center {
  justify-content: center;
  align-items: center;
}


/* --- その他：透明度、幅、高さなど --- */
.opacity-0 {
  opacity: 0 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}


/* --- コンテンツインナー --- */
.contents_inner {
  position: relative;
  margin-top: 0;
  margin-inline: auto;
  width: 62vw;
  /* 最大幅を制限して読みやすく */
  height: auto;
  padding-inline: 1rem;
  /* スマホ対策の余白 */
  text-align: justify;
}

@media screen and (max-width: 1050px) {
  .contents_inner {
    width: 95%;
  }
}


.pagetopact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 4000;
}

.clearimg {
  -webkit-backface-visibility: hidden;
}

.overlaywrp_dot {
  position: fixed;
  width: 100vw;
  height: 101vh;
  top: -1px;
  background-image: url(../img/common/04.png);
  opacity: 0.8;
  z-index: 10 !important;
}


.brn {
  border-right: none !important;
}

.drop_s {
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .8));
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .8));
}


/* --- テキストインデント --- */

.indent-1 {
  padding-left: 0.3em;
  text-indent: -0.3em;
}

.indent-2 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-3 {
  padding-left: 2.1em;
  text-indent: -2.1em;
}

.indent-4 {
  padding-left: 2.1em;
  text-indent: -2.1em;
}
.txt_lead {
  font-size: 1.3rem;
  
}
@media screen and (max-width: 1050px) {
  .txt_lead {
  font-size: 1.0rem;
  
}
}