/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

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

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}

body {
  position: relative;
  z-index: 100;
  font-size: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

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

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

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header .container {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .site-header .container {
    padding: 30px;
  }
}
.site-header .container .logo {
  position: relative;
  z-index: 110;
  padding: 15px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #DB392A;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header .container .logo img {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo img {
    width: 250px;
  }
}
.site-header .container .hbg {
  position: relative;
  z-index: 110;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #DB392A;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .inner {
  position: relative;
  width: 30px;
  height: 14px;
}
.site-header .container .hbg .inner .line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #DB392A;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.site-header .container .hbg .inner .line:first-child {
  top: 0;
}
.site-header .container .hbg .inner .line:last-child {
  bottom: 0;
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateY(5.5px) rotate(45deg);
          transform: translateY(5.5px) rotate(45deg);
}
.site-header .container .is-hbg .line:last-child {
  -webkit-transform: translateY(-5.5px) rotate(-45deg);
          transform: translateY(-5.5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: #DB392A;
  padding: 89.91px 15px 15px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.site-header .container .drawer .drawer-list .item {
  width: calc(50% - 7.5px);
  margin-top: 15px;
  margin-right: 15px;
}
.site-header .container .drawer .drawer-list .item:nth-child(2n) {
  margin-right: 0;
}
.site-header .container .drawer .drawer-list .item:nth-child(-n+2) {
  margin-top: 0;
}
.site-header .container .drawer .drawer-list .item a {
  display: block;
  -moz-text-align-last: center;
       text-align-last: center;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
}
.site-header .container .drawer .drawer-list .item a .img img {
  width: 75px;
}
.site-header .container .drawer .drawer-list .item a .text {
  margin-top: 15px;
}
.site-header .container .drawer .sns-list {
  margin-top: 15px;
}
.site-header .container .drawer .address {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.4em;
}
.site-header .container .drawer .cp {
  margin-top: 15px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 0;
  font-size: 12px;
}
.site-header .container .is-drawer {
  opacity: 1;
  pointer-events: auto;
}
.site-header .container .menu-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #DB392A;
  }
  .site-header .container .menu-list .item:not(:first-child) {
    margin-left: 15px;
  }
  .site-header .container .menu-list .item a {
    font-size: clamp(0.75rem, 0.665rem + 0.36vw, 0.938rem);
  }
  .site-header .container .menu-list .contact a {
    display: inline-block;
    padding: 15px;
    background: #DB392A;
    border-radius: 5px;
    color: #fff;
  }
}

/*
main
================================*/
/*
footer
================================*/
.site-footer .cta {
  background-image: url("../../../assets/images/common/cta-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site-footer .cta .inner {
  padding: 25px;
  border-radius: 5px;
  background: #DB392A;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner {
    padding: 50px;
  }
}
.site-footer .cta .inner .catch {
  text-align: center;
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4em;
}
.site-footer .cta .inner .desc {
  margin-top: 20px;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .desc {
    margin-top: 30px;
  }
}
.site-footer .cta .inner .desc p {
  text-align: center;
}
.site-footer .cta .inner .desc p:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .desc p:not(:first-child) {
    margin-top: 20px;
  }
}
.site-footer .cta .inner .btn-list {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
  }
}
.site-footer .cta .inner .btn-list .btn {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .btn-list .btn {
    margin-top: 0;
    width: calc(50% - 25px);
    margin-right: 50px;
  }
  .site-footer .cta .inner .btn-list .btn:nth-child(2n) {
    margin-right: 0;
  }
}
.site-footer .cta .inner .btn-list .btn:first-child {
  margin-top: 0;
}
.site-footer .cta .inner .btn-list .btn a {
  display: block;
  -moz-text-align-last: center;
       text-align-last: center;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .btn-list .btn a {
    padding: 25px;
  }
}
.site-footer .cta .inner .btn-list .btn a .img img {
  width: 75px;
}
.site-footer .cta .inner .btn-list .btn a .text {
  margin-top: 15px;
  font-weight: 900;
  font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
}
@media screen and (min-width: 1024px) {
  .site-footer .cta .inner .btn-list .btn a .text {
    margin-top: 20px;
  }
}
.site-footer .container {
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-footer .container .logo img {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .site-footer .container .logo img {
    width: 250px;
  }
}
.site-footer .container .links {
  margin: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem) 0;
}
.site-footer .container .links .link:not(:first-child) {
  margin-top: 15px;
}
.site-footer .container .cp {
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 12px;
}

/*===============================
module
================================*/
/*
title-style
================================*/
.sec-title {
  -moz-text-align-last: center;
       text-align-last: center;
  margin-bottom: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem);
}
.sec-title span {
  display: block;
}
.sec-title__ja {
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  font-weight: 900;
}
.sec-title__en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  margin-top: 10px;
  font-size: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
}
@media screen and (min-width: 1024px) {
  .sec-title__en {
    margin-top: 20px;
  }
}

.page-title {
  padding: 104.91px 30px 30px;
  background: #DB392A;
  color: #fff;
  -moz-text-align-last: center;
       text-align-last: center;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .page-title {
    padding: 164.33px 30px 60px;
  }
}
.page-title__ja {
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  font-weight: 900;
}
.page-title__en {
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  font-size: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
}
@media screen and (min-width: 1024px) {
  .page-title__en {
    margin-top: 20px;
  }
}

/*
btn-style
================================*/
.more-btn {
  margin-top: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem);
}
.more-btn a {
  display: block;
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  padding: 10px;
  background: #DB392A;
  color: #fff;
  border-radius: 5px;
  font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
  max-width: 400px;
  margin-inline: auto;
}

/*
news-style
================================*/
@media screen and (min-width: 1024px) {
  .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news-list .item {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .news-list .item {
    margin-top: 50px;
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
  .news-list .item:nth-child(3n) {
    margin-right: 0;
  }
  .news-list .item:nth-child(-n+3) {
    margin-top: 0;
  }
}
.news-list .item:first-child {
  margin-top: 0;
}
.news-list .item a {
  display: block;
}
.news-list .item a .thumb {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1000/667;
}
.news-list .item a .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list .item a .title {
  margin-top: 15px;
  line-height: 1.4em;
  font-weight: 900;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .title {
    margin-top: 20px;
    font-size: 17px;
  }
}
.news-list .item a .info {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .info {
    margin-top: 15px;
  }
}
.news-list .item a .info .date {
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .info .date {
    margin-right: 15px;
  }
}
.news-list .item a .info .cat {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  font-family: "Poppins", sans-serif;
  color: #DB392A;
}
@media screen and (min-width: 1024px) {
  .news-list .item a .info .cat {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}

/*
space
================================*/
.pad-tb {
  padding: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem) 0;
}

.mar-tb {
  margin: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem) 0;
}

.pad-t {
  padding-top: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
}

.pad-b {
  padding-bottom: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem);
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}