@charset "UTF-8";
/* ------------------------------------------------------------

Reset

------------------------------------------------------------ */
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,
main {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
  font:inherit;
  font-family:inherit;
  */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  display: block;
}

:root {
  --scrollbar: 17px;
}

html {
  /*--基準--1対1でスケール*/
  font-size: calc((100vw - var(--scrollbar)) / 1440 * 10 / 1920 * 1620);
  /*--ブレイクポイント1920px--固定*/
  /*--ブレイクポイント1620px--1対1でスケール*/
  /*--ブレイクポイント1440px--固定*/
  /*--ブレイクポイント1200px--1対1でスケール*/
  /*--ブレイクポイント767px--1対1でスケール*/
}
@media print {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 10);
  }
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 70.3125%;
  }
}
@media screen and (max-width: 1620px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 10);
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
dialog,
figure,
footer,
header,
main,
nav,
section,
summary,
textarea {
  display: block;
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: #FFF;
  color: #232323;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
body.open {
  overflow: hidden;
}

/* ------------------------------------------------------------

Font

------------------------------------------------------------ */
* {
  font-family: YakuHanJPs_Noto, "Noto Sans JP", Meiryo, sans-serif;
}

/* ------------------------------------------------------------

Shortcodes

------------------------------------------------------------ */
.normal {
  font-weight: 400 !important;
}

.bold {
  font-weight: 700 !important;
}

.italic {
  font-style: italic !important;
}

.none {
  display: none !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

sub {
  vertical-align: sub !important;
  font-size: 50%;
}

sup {
  vertical-align: sup !important;
  font-size: 50%;
}

.txt-mail::after {
  content: "@";
}

.red01 {
  color: #FF0000;
}

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

/*--layout*/
.linkTxt01{
  display: block;
  margin-top: 8rem;
}

.linkTxt01__inner{
  /* display: block; */
  text-align: center;
}

.linkTxt01__inner a {
  color: #0077FF;
  display: inline-block;
  text-decoration: underline !important;
  word-wrap: break-word;
}
.linkTxt01__inner a:hover {
  text-decoration: none !important;
}

.note01{
  display: block;
  margin-top: 2rem;
}

.note01__inner{
  text-align: center;
  font-size: 80%;
}