/*=============================================================================
   Reset
=============================================================================*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&family=Noto+Sans+JP:wght@400;700&display=swap");
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;
}

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

body {
  margin: 0;
  color: #222;
  background: #efefef;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5em;
  line-height: 1.8;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
  }
}

a:link, a:visited {
  color: #db6;
  text-decoration: none;
}

a:hover, a:active, a.hover {
  color: #ca9d2d;
  text-decoration: underline;
  outline: 0;
}

a:focus {
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 1;
}

a:hover img, a.hover img {
  opacity: 0.75;
}

strong {
  font-size: 1.1em;
  font-weight: 600;
}

span.nwp {
  display: inline-block;
}

hr {
  margin: 1.8rem 0;
  padding: 0;
  border: solid #484848;
  border-width: 1px 0 0 0;
  height: 0;
  clear: both;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast; /*chrome*/
}

.img_round img, img.img_round {
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .img_round img, img.img_round {
    border-radius: 60px;
  }
}

.disclist {
  list-style: disc outside;
}
.disclist li {
  margin-left: 1.5em;
  line-height: 1.4;
}
.disclist li:not(:last-child) {
  margin-bottom: 0.6em;
}

.numlist {
  list-style: decimal;
}
.numlist li {
  margin-left: 1.5em;
  line-height: 1.4;
}
.numlist li:not(:last-child) {
  margin-bottom: 0.6em;
}

.indentlist li, .outdent {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
.indentlist li:not(:last-child), .outdent:not(:last-child) {
  margin-bottom: 0.6em;
}
.indentlist li .in_blk, .outdent .in_blk {
  text-indent: 0em;
  white-space: nowrap;
}

.in_blk {
  display: inline-block;
}

.n_wrp {
  white-space: nowrap;
}

.bgfix {
  background-attachment: fixed;
}

.gap_m {
  margin-top: clamp(3.125rem, 2.391rem + 3.26vw, 5rem);
  margin-bottom: clamp(3.125rem, 2.391rem + 3.26vw, 5rem);
}

.gaps_m {
  margin-top: clamp(1.25em, 3vw + 0.6em, 3.125em);
  margin-bottom: clamp(1.25em, 3vw + 0.6em, 3.125em);
}

.gap_p {
  padding-top: clamp(3.125rem, 2.391rem + 3.26vw, 5rem);
  padding-bottom: clamp(3.125rem, 2.391rem + 3.26vw, 5rem);
}

.gaps_p {
  padding-top: clamp(1.25em, 3vw + 0.6em, 3.125em);
  padding-bottom: clamp(1.25em, 3vw + 0.6em, 3.125em);
}

.gapl_p {
  padding-top: clamp(4.375em, 3.571em + 3.57vw, 6.25em);
  padding-bottom: clamp(4.375em, 3.571em + 3.57vw, 6.25em);
}

#wrapper {
  width: 100%;
  overflow: hidden;
}

/* Clear Settings
-----------------------------------------------------------------------------*/
.clear {
  clear: both;
}

.clear:after {
  content: " ";
  display: block;
  clear: both;
}

/*
 Respond
========================================================================*/
._xs {
  visibility: hidden;
}
@media screen and (max-width: 360px) {
  ._xs {
    visibility: visible !important;
  }
}

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

._sm {
  display: none;
}
@media screen and (max-width: 575px) {
  ._sm {
    display: inline-block !important;
  }
}

._smd {
  display: none;
}
@media screen and (max-width: 767px) {
  ._smd {
    display: inline-block !important;
  }
}

._slg {
  visibility: hidden;
}
@media screen and (max-width: 991px) {
  ._slg {
    visibility: visible !important;
  }
}

._mxs {
  visibility: hidden !important;
}
@media screen and (min-width: 361px) {
  ._mxs {
    visibility: visible !important;
  }
}

._mss {
  visibility: hidden !important;
}
@media screen and (min-width: 480px) {
  ._mss {
    visibility: visible !important;
  }
}

._ms {
  display: none;
}
@media screen and (min-width: 576px) {
  ._ms {
    display: inline-block !important;
  }
}

._md {
  display: none;
}
@media screen and (min-width: 768px) {
  ._md {
    display: inline-block !important;
  }
}

._lg {
  display: none;
}
@media screen and (min-width: 992px) {
  ._lg {
    display: inline-block !important;
  }
}

._ll {
  display: none;
}
@media screen and (min-width: 1200px) {
  ._ll {
    display: inline-block !important;
  }
}

._xl {
  display: none;
}
@media screen and (min-width: 1400px) {
  ._xl {
    display: inline-block !important;
  }
}

._ml_center {
  text-align: left;
}
@media screen and (min-width: 768px) {
  ._ml_center {
    text-align: center;
  }
}

/*=============================================================================
   Style
=============================================================================*/
/* Style_font
--------------------------------------------------- */
.exmin {
  font-size: 50%;
  font-weight: normal;
}

.min {
  font-size: 65%;
  font-weight: normal;
}

.exsmall {
  font-size: 75%;
  font-weight: normal;
}

.smaller {
  font-size: smaller;
  font-weight: normal;
}

.small {
  font-size: 90%;
  font-weight: normal;
}

.midium {
  font-size: 115%;
}

.midbold {
  font-size: 115%;
  font-weight: 600;
}

.larger {
  font-size: larger;
}

.largest {
  font-size: 137.5%;
}

.big {
  font-size: 140%;
  font-weight: 600;
}

.exbig {
  font-size: 2em;
  font-weight: 600;
}

.bold {
  font-weight: 600;
}

.red {
  color: #d55;
}

.white {
  color: #fff;
}

.green {
  color: #698;
}

.blue {
  color: #36b;
}

.navy {
  color: #124;
}

.yell {
  color: #da4;
}

.ora {
  color: #e93;
}

.fnt_serif {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.fnt_sans {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.txt_vt {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  word-wrap: break-word;
}

.txt_vt p, .txt_vt.txt p {
  margin: 0 0 0 2em;
}

.txt_combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.ltr-min {
  letter-spacing: -0.17em;
}

.txtframe_wh {
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
}

/* Style_border
--------------------------------------------------- */
.border {
  border: 1px solid #987;
}

.border_double {
  border: 2px double #987;
}

.border_btm {
  border-bottom: 1px solid #987;
}

.borderdot {
  border: 1px dotted #987;
}

.borderdot_btm {
  border-bottom: 1px dotted #987;
}

/* Style_box
--------------------------------------------------- */
.borderbox, .bgbox {
  display: block;
  margin: 0 auto 1.3em;
  padding: calc(1.125em + (1vw - 0.2em) * 2.27);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.borderbox::after, .bgbox::after {
  content: "";
  display: block;
  clear: both;
}
.borderbox.wide, .bgbox.wide {
  width: 100%;
}
.borderbox.bgwhite, .bgbox.bgwhite {
  background-color: rgba(255, 255, 255, 0.5);
}
.borderbox.matwh, .bgbox.matwh {
  background: rgba(255, 255, 255, 0.3);
}
.borderbox.mat, .bgbox.mat {
  background: url(../img/bg_mat.jpg);
}

.borderbox {
  border: 1px solid #987;
}
.borderbox.dotted {
  border-style: dotted;
}
.borderbox.double {
  border-style: double;
  border-width: 4px;
}

/* Style_table
--------------------------------------------------- */
table {
  margin: 0px auto 1em;
}
table th, table td {
  padding: 6.4px;
}
table th {
  background: rgba(187, 161, 102, 0.2);
  white-space: nowrap;
}
table caption {
  text-align: left;
  font-weight: bold;
  margin: 0.3em 0;
}

table + P {
  margin-top: -0.8em;
  margin-bottom: 0.8em;
}

table + ul {
  margin-top: -0.8em;
  margin-bottom: 0.8em;
}

table.border, .border th, .border td {
  border: 1px solid #987;
}

table.border_in {
  border: none;
}
table.border_in th, table.border_in td {
  border: 1px solid #987;
}

table.border_btm {
  border: none;
}
table.border_btm th, table.border_btm td {
  border-bottom: 1px solid #987;
}
table.border_btm th {
  background: none;
}
table.border_btm.dotted th, table.border_btm.dotted td {
  border-style: dotted;
}

@media screen and (max-width: 767px) {
  table.rsp {
    border: none;
  }
  table.rsp .w-1em {
    white-space: unset;
    width: 1em;
  }
  table.rsp th, table.rsp td {
    display: block;
    margin-top: -1px;
  }
  table.rsp.border_btm th, table.rsp.dotted th {
    border-width: 0;
    padding-bottom: 0;
    padding-top: calc(6.4px *2);
  }
}

@media screen and (min-width: 576px) {
  table.rsp2 {
    border: none;
  }
  table.rsp2 tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  table.rsp2 tr {
    display: inline-block;
    width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: -1px 0 0 -1px;
  }
  table.rsp2 th, table.rsp2 td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    margin: -1px 0 0 -1px;
  }
}

.intable {
  display: table;
  width: calc(100% - 1px);
  padding: 0;
  border-width: 0 0 0 1px;
}
@media screen and (min-width: 768px) {
  .intable {
    width: 100%;
    border: none;
    margin-top: -1px;
  }
}
.intable dl {
  display: table-row;
}
.intable dt, .intable dd {
  display: table-cell;
  padding: 6.4px;
  border-style: solid;
  border-color: #987;
  border-width: 1px 1px 0 0;
}

/* d list
--------------------------------------------------- */
dl.border {
  border: none;
  border-top: 1px solid #987;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
dl.border dt, dl.border dd {
  padding: 0.3em 0.6em;
  border: 1px solid #987;
  border-top: none;
}
dl.border.th-bg dt {
  background: rgba(187, 161, 102, 0.2);
}

/* scroll bar
--------------------------------------------------- */
.scrl_x {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1em;
}
.scrl_x::-webkit-scrollbar {
  height: 7px;
}
.scrl_x::-webkit-scrollbar-track {
  background: #F1F1F1;
}
.scrl_x::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.scrl_x table {
  margin: 0 auto;
}

/* Style float margin padding
--------------------------------------------------- */
.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

.aligncenter {
  text-align: center;
}

.lfloat, .left {
  float: left !important;
}

.rfloat, .right {
  float: right !important;
}

img.left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

img.right {
  float: right;
  margin-bottom: 10px;
  margin-left: 10px;
}

.m0 {
  margin: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}