@charset "UTF-8";
/* -------------------------------------------------------
reset
------------------------------------------------------- */
/* 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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
main,
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-spacing: 0;
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  outline: none;
  border: none;
}

.anim {
  opacity: 0;
}

.anim.is-show {
  /*
  opacity: 1;
  transform: translateY(0);
  */
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
p,
a,
li,
input,
label,
time,
span,
th,
td,
small {
  font-family: "Noto Serif JP", serif;
  color: #000;
}

p {
  line-height: 1.5;
  font-size: clamp(0.938rem, 0.875rem + 0.167vw, 1rem);
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
}

button {
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}

video {
  max-width: 100%;
  width: 100%;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.container-sm {
  display: block;
}
@container (width>420px) {
  .container-sm {
    display: none;
  }
}

.text-white {
  color: #fff;
}

.text-red {
  color: #ff0000;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* -------------------------------------------------------
.c-sec
------------------------------------------------------- */
.c-sec {
  padding: clamp(1.875rem, -1.25rem + 6.667vw, 3.75rem);
}
@media screen and (min-width: 769px) {
  .c-sec {
    padding-inline: 8.4cqw;
  }
}

/* -------------------------------------------------------
.c-secttl
------------------------------------------------------- */
.c-secttl {
  margin-bottom: 24px;
}
.c-secttl__en {
  text-transform: uppercase;
  font-size: clamp(2.375rem, 0.926rem + 1.609vw, 3.5rem);
  margin-bottom: clamp(0.313rem, 0rem + 0.833vw, 0.625rem);
  text-align: center;
}
.c-secttl__jp {
  font-size: clamp(1rem, 0.875rem + 0.333vw, 1.125rem);
  font-weight: 600;
  text-align: center;
}
.c-secttl-white .c-secttl__en,
.c-secttl-white .c-secttl__jp {
  color: #fff;
}

/* -------------------------------------------------------
.c-subttl
------------------------------------------------------- */
.c-subttl {
  font-size: clamp(1rem, 1rem + 0.333vw, 1.25rem);
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #231815;
  padding-block: 7px;
  padding-inline: 16px;
  margin-bottom: 20px;
  line-height: 1.2;
  width: fit-content;
  margin-inline: auto;
}

/* -------------------------------------------------------
.c-block-item
------------------------------------------------------- */
.c-block-item {
  background-color: #fff;
  padding: 5cqw;
  margin-bottom: clamp(1.25rem, 0.625rem + 1.667vw, 1.875rem);
}
.c-block-item:last-child {
  margin-bottom: 0;
}
.c-block-item__ttl {
  font-size: clamp(1.25rem, 0.606rem + 0.715vw, 1.75rem);
  font-weight: 500;
  background-color: #231815;
  color: #fff;
  padding: 3px 15px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: clamp(1.25rem, 0.625rem + 1.667vw, 1.5rem);
  text-align: center;
}
.c-block-item__txt {
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.9;
  color: #231815;
}
@media screen and (min-width: 769px) {
  .c-block-item__txt {
    margin-bottom: 30px;
  }
}
.c-block-item__txt-citeicon {
  font-size: 10px;
  vertical-align: text-top;
  color: #327492;
}
.c-block-item__img {
  margin-bottom: 7px;
}

/* -------------------------------------------------------
.c-table 
------------------------------------------------------- */
.c-table {
  width: 100%;
  border-bottom: 1px solid #f0f3f3;
  border-right: 1px solid #f0f3f3;
}
.c-table th,
.c-table td {
  font-weight: 400;
  text-align: center;
  padding: 8px 4px;
  vertical-align: middle;
  font-size: clamp(0.812rem, 0.75rem + 0.333vw, 1rem);
}
@media screen and (min-width: 769px) {
  .c-table th,
  .c-table td {
    padding: 13px 5px;
  }
}
.c-table td {
  color: #000;
  background-color: #fff;
  border-bottom: 1px dashed #969696;
  border-right: 1px solid #969696;
}
.c-table tr td:last-child {
  border-right: 0;
}
.c-table .thead th {
  color: #fff;
  background-color: #000;
  border-right: 1px solid #fff;
}
.c-table .th-gray {
  background-color: #969696;
  color: #fff;
}
.c-table tbody .th-gray {
  border-bottom: 1px dashed #fff;
  font-weight: 700;
}

/* -------------------------------------------------------
.c-table-b ラインのみの表
------------------------------------------------------- */
.c-table-b {
  width: 100%;
}
.c-table-b th,
.c-table-b td {
  font-size: clamp(0.813rem, 0.652rem + 0.179vw, 0.938rem);
  padding: clamp(0.313rem, 0rem + 0.833vw, 0.5rem) 0;
  border-bottom: 1px solid #C8C8C8;
  vertical-align: middle;
}
.c-table-b th {
  font-weight: bold;
  color: #969696;
  padding-left: 10px;
  text-align: left;
}
.c-table-b tr:first-child th,
.c-table-b tr:first-child td {
  padding-top: 0;
}
.c-table-b tr:last-child th,
.c-table-b tr:last-child td {
  border-color: transparent;
}

/* -------------------------------------------------------
.c-btnblock
------------------------------------------------------- */
.c-btnblock {
  text-align: center;
  width: 100%;
  margin-bottom: clamp(1.25rem, 0.938rem + 0.833vw, 1.563rem);
}
.c-btnblock:last-child {
  margin-bottom: 0;
}

.c-btn {
  display: inline-block;
  padding: 16px 40px;
  width: 100%;
  max-width: 480px;
  border: 1px solid #000;
  font-size: clamp(1rem, 0.875rem + 0.333vw, 1.125rem);
  font-weight: 500;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-btn {
    width: 80%;
  }
}
.c-btn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
}
.c-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
.c-btn:hover::after {
  border-color: #fff;
}
.c-btn-search::before {
  content: "";
  width: 25px;
  height: 25px;
  margin-top: -6px;
  display: inline-block;
  background-image: url(../img/common/icon-search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-10px, 5px);
}
.c-btn-search:hover::before {
  background-image: url(../img/common/icon-search2.svg);
}
.c-btn-contact::before {
  content: "";
  width: 27px;
  height: 27px;
  margin-top: -7px;
  display: inline-block;
  background-image: url(../img/common/icon-contact.svg?);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-10px, 5px);
  margin-left: -10px;
}
.c-btn--esmo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-btn--esmo .esmo-logo {
  display: inline-block;
  width: 136px;
  height: 20px;
  vertical-align: middle;
}
.c-btn--esmo .esmo-logo .esmo-logo-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  vertical-align: baseline;
  transition: opacity 0.3s ease;
}
.c-btn--esmo .esmo-logo .esmo-logo-img--white {
  display: none;
  width: 0;
}
.c-btn--esmo:hover .esmo-logo-img--default {
  display: none;
  width: 0;
}
.c-btn--esmo:hover .esmo-logo-img--white {
  display: inline-block;
  width: auto;
}

/* -------------------------------------------------------
.c-link-blue
------------------------------------------------------- */
.c-link {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-link:hover {
  opacity: 0.7;
}

.c-link-blue {
  color: #0000FF;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-link-blue:hover {
  opacity: 0.7;
}

/* -------------------------------------------------------
.c-note
------------------------------------------------------- */
.c-note {
  font-size: 12px;
  line-height: 1.75;
  font-family: "Noto Sans JP", serif;
}
.c-note--indent {
  text-indent: -12px;
  padding-left: 12px;
}
.c-note a,
.c-note span {
  font-family: "Noto Sans JP", serif;
}

.footer {
  background-color: #000;
  padding: 30px;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 55px;
  }
}
.footer__logo {
  width: min(42%, 260px);
  min-width: 200px;
  margin: 0 auto;
}
.footer a:hover {
  opacity: 0.6;
}

@media screen and (orientation: landscape) {
  .l-pc-container {
    position: relative;
    width: 100vw;
    height: 100vh;
  }
}

@media screen and (orientation: landscape) {
  .l-pc-left {
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.l-pc-right {
  container-type: inline-size;
}
@media screen and (orientation: landscape) {
  .l-pc-right {
    width: 50vw;
    position: absolute;
    top: 0;
    right: 0;
  }
}/*# sourceMappingURL=common.css.map */