@charset "UTF-8";
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;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #000;
  word-break: break-all;
  letter-spacing: 0.05em;
}
body.is_fixed {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.enTxt {
  font-family: "Work Sans", sans-serif;
}

.enTxt2 {
  font-family: "EB Garamond", serif;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(50px);
  /* 下に少しずらす */
  transition: opacity 1s 0.3s ease, transform 1s 0.3s ease;
  /* アニメーションの設定 */
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

.acContents {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  /* 背景色（ブランドカラーでもOK） */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0 30px;
  transition: opacity 2s 2s ease, visibility 2s 2s ease;
}

/* 読み込み完了時にフェードアウト */
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ローディング中のロゴ画像 */
.loading-img {
  width: 368px;
  /* ロゴの大きさを調整 */
}

/* ロゴの点滅アニメーション */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.top {
  background-image: url(../../../assets/img/page/work-top.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .top {
    height: 350px;
  }
}
.top.company {
  background-image: url(../../../assets/img/page/company-top.jpg);
}
.top.company h2 {
  position: relative;
}
.top.company h2::after {
  content: "Company";
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 450px) {
  .top.company h2::after {
    font-size: 14px;
  }
}
.top.service {
  background-image: url(../../../assets/img/page/service-top.jpg);
}
.top.service h2 {
  position: relative;
}
.top.service h2::after {
  content: "Service";
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 450px) {
  .top.service h2::after {
    font-size: 14px;
  }
}
.top.form {
  background-image: url(../../../assets/img/page/contact-top.jpg);
}
.top.form h2 {
  position: relative;
}
.top.form h2::after {
  content: "Contact";
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 450px) {
  .top.form h2::after {
    font-size: 14px;
  }
}
.top.news {
  background-image: url(../../../assets/img/page/news-top.jpg);
}
.top.news h2 {
  position: relative;
}
.top.news h2::after {
  content: "News";
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 450px) {
  .top.news h2::after {
    font-size: 14px;
  }
}
.top__inner {
  max-width: 1023px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top__inner {
    padding: 0;
  }
}
.top__inner h2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top__inner h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .top__inner h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .top__inner h2 {
    font-size: 24px;
  }
}
.top__inner p {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  bottom: 15px;
  left: 0;
}
.top__inner p a {
  color: #fff;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 2001;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
  }
}
.header.open {
  background-color: #0080cc;
  position: fixed;
  top: 0;
  left: 0;
}
.header.open li {
  border: 2px solid #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner--nav {
    display: none;
  }
}
.header__inner--nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.header__inner--nav ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: 0.3s;
}
.header__inner--nav ul li a:hover {
  border-bottom: 1px solid #004ea2;
}
.header__inner--nav ul .blue a {
  background-color: #0080cc;
  width: 160px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.header__inner--nav ul .blue a:hover {
  background: #fff;
  color: #0080cc;
  opacity: 1;
}
.header__inner--sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__inner--sp-nav {
    display: block;
  }
}
.header__inner--sp-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__inner--sp-nav ul li {
  background-color: #0080cc;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .header__inner--sp-nav ul li {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 550px) {
  .header__inner--sp-nav ul li img {
    width: 20px;
  }
}
.header__inner--sp-nav ul li.hamburger__btn {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.header__inner--sp-nav ul li.hamburger__btn span {
  width: 50%;
  height: 2px;
  background: #0080cc;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.header__inner--sp-nav ul li.hamburger__btn.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
  width: 50%;
}
.header__inner--sp-nav ul li.hamburger__btn.active span:nth-child(2) {
  opacity: 0;
}
.header__inner--sp-nav ul li.hamburger__btn.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  width: 50%;
}
.header .off {
  display: block;
}
.header .on {
  display: none;
}
.header.active {
  position: fixed;
  width: 100%;
  background: #fff;
}
.header.active .off {
  display: none;
}
.header.active .on {
  display: block;
}
.header.active .header__inner ul a {
  color: #000;
}
.header.active .header__inner ul .blue a {
  color: #fff;
  border: 1px solid #0080cc;
}
.header.active .header__inner ul .blue a:hover {
  color: #0080cc;
}

/* ハンバーガーメニュー */
.drawerNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #0080cc;
  transition: all 0.3s ease;
  overflow-y: auto;
  z-index: 1000;
  padding: 150px 20px 40px;
  transform: translateX(100%);
}
.drawerNav.open {
  transform: translateX(0);
}
.drawerNav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.drawerNav ul li {
  margin-bottom: 60px;
}
.drawerNav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .drawerNav ul li a {
    font-size: 36px;
  }
}
@media screen and (max-width: 650px) {
  .drawerNav ul li a {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .drawerNav ul li a {
    font-size: 20px;
  }
}
.drawerNav .contact__inner--right-btn {
  border: 2px solid #fff;
}

.footer__inner {
  max-width: 1023px;
  margin: 0 auto;
  padding: 100px 20px 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__inner--left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer__inner--left {
    width: 100%;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 650px) {
  .footer__inner--left {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner--left {
    margin-bottom: 100px;
  }
}
.footer__inner--left img {
  margin-bottom: 10px;
}
.footer__inner--left-text {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer__inner--left-text {
    font-size: 26px;
  }
}
@media screen and (max-width: 650px) {
  .footer__inner--left-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner--left-text {
    font-size: 14px;
  }
}
.footer__inner--right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer__inner--right {
    width: 100%;
  }
}
.footer__inner--right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  margin-bottom: 230px;
}
@media screen and (max-width: 768px) {
  .footer__inner--right ul {
    flex-direction: column;
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (max-width: 650px) {
  .footer__inner--right ul {
    gap: 60px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner--right ul {
    gap: 60px;
    margin-bottom: 100px;
  }
}
.footer__inner--right ul li a {
  color: #333;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer__inner--right ul li a {
    font-size: 36px;
  }
}
@media screen and (max-width: 650px) {
  .footer__inner--right ul li a {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner--right ul li a {
    font-size: 20px;
  }
}
.footer__inner--right small {
  display: block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__inner--right small {
    text-align: center;
  }
}
.footer .cta {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footer .cta {
    display: none;
  }
}

.about {
  background-image: url(../../../assets/img/top/M.png);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: 80% center;
}
@media screen and (max-width: 768px) {
  .about {
    background-size: 100%;
  }
}
.about__inner {
  max-width: 1023px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 50px 20px;
  }
}
.about__inner--ttl {
  font-size: 36px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about__inner--ttl {
    font-size: 56px;
  }
}
@media screen and (max-width: 600px) {
  .about__inner--ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--ttl {
    font-size: 28px;
  }
}
.about__inner--ttl::after {
  content: "About";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__inner--ttl::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .about__inner--ttl::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--ttl::after {
    font-size: 16px;
  }
}
.about__inner--bigtext {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 50px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .about__inner--bigtext {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--bigtext {
    font-size: 20px;
  }
}
.about__inner--text {
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about__inner--text {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .about__inner--text {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--text {
    font-size: 16px;
  }
}
.about__inner .more {
  display: block;
  color: #fff;
  background-color: #0080cc;
  border: 1px solid #0080cc;
  padding: 20px 10px;
  width: 260px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about__inner .more .off {
  display: block;
}
.about__inner .more .on {
  display: none;
}
.about__inner .more:hover {
  opacity: 1;
  background: #fff;
  color: #0080cc;
  border: 1px solid #0080cc;
}
.about__inner .more:hover .off {
  display: none;
}
.about__inner .more:hover .on {
  display: block;
}
@media screen and (max-width: 768px) {
  .about__inner .more {
    width: 100%;
  }
}
.about__inner .more img {
  position: absolute;
  right: 15px;
}

.infomation {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .infomation {
    margin-bottom: 40px;
  }
}
.infomation__inner {
  max-width: 1023px;
  margin: 0 auto;
  padding: 0 20px;
}
.infomation__inner h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .infomation__inner h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .infomation__inner h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .infomation__inner h2 {
    font-size: 22px;
  }
}
.infomation__inner h2::after {
  content: "infomation";
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #004ea2;
}
@media screen and (max-width: 450px) {
  .infomation__inner h2::after {
    font-size: 10px;
  }
}
.infomation__inner--list dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  border-top: 1px solid #037fec;
  font-size: 18px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .infomation__inner--list dl {
    flex-direction: column;
    padding: 20px 0;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .infomation__inner--list dl {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .infomation__inner--list dl {
    font-size: 14px;
  }
}
.infomation__inner--list dl:last-of-type {
  border-bottom: 1px solid #037fec;
}
.infomation__inner--list dl dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .infomation__inner--list dl dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.infomation__inner--list dl dd {
  width: 80%;
}
.infomation__inner--list dl dd iframe {
  margin-top: 20px;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .infomation__inner--list dl dd iframe {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .infomation__inner--list dl dd {
    width: 100%;
  }
}

.greeting {
  padding: 100px 40px;
  background: url(../../img/page/greeting-bg.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .greeting {
    padding: 70px 20px;
  }
}
.greeting__inner {
  max-width: 1020px;
  margin: 0 auto;
}
.greeting h2 {
  position: relative;
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .greeting h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .greeting h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .greeting h2 {
    font-size: 22px;
  }
}
.greeting h2::after {
  content: "Greeting";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .greeting h2::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .greeting h2::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .greeting h2::after {
    font-size: 16px;
  }
}
.greeting__box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .greeting__box {
    display: block;
  }
}
.greeting__img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .greeting__img {
    text-align: center;
    width: 70%;
    margin: 0 auto 30px;
  }
}
.greeting__contents {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .greeting__contents {
    width: 100%;
  }
}
.greeting__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 120px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .greeting__text {
    margin-bottom: 40px;
  }
}
.greeting__name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .greeting__name {
    font-size: 14px;
    gap: 20px;
  }
  .greeting__name img {
    width: 90px;
  }
}

.cp {
  padding: 100px 40px 35px;
}
@media screen and (max-width: 768px) {
  .cp {
    padding: 70px 20px 30px;
  }
}
.cp__inner {
  max-width: 1020px;
  margin: 0 auto;
}
.cp h2 {
  position: relative;
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cp h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .cp h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .cp h2 {
    font-size: 22px;
  }
}
.cp h2::after {
  content: "Corporate Philosophy";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .cp h2::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .cp h2::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .cp h2::after {
    font-size: 16px;
  }
}
.cp__contents {
  margin-top: 30px;
  background: #f1faff;
  padding: 60px 60px;
}
@media screen and (max-width: 768px) {
  .cp__contents {
    padding: 40px 25px;
  }
}
.cp__contents p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cp__contents p {
    font-size: 14px;
  }
}

.mission {
  padding: 30px 40px 90px;
}
@media screen and (max-width: 768px) {
  .mission {
    padding: 30px 20px 70px;
  }
}
.mission__inner {
  max-width: 1020px;
  margin: 0 auto;
}
.mission h2 {
  position: relative;
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mission h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .mission h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .mission h2 {
    font-size: 22px;
  }
}
.mission h2::after {
  content: "Corporate Philosophy";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .mission h2::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .mission h2::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .mission h2::after {
    font-size: 16px;
  }
}
.mission__contents {
  margin-top: 30px;
  background: #f1faff;
  padding: 60px 60px;
}
@media screen and (max-width: 768px) {
  .mission__contents {
    padding: 40px 25px;
  }
}
.mission__contents p {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .mission__contents p {
    font-size: 14px;
  }
}
.mission__item + .mission__item {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .mission__item + .mission__item {
    margin-top: 50px;
  }
}
.mission__item h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .mission__item h3 {
    font-size: 16px;
  }
}
.mission__item h3 span {
  color: #346aaf;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .mission__item h3 span {
    font-size: 22px;
  }
}
.mission__item p {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .mission__item p {
    font-size: 14px;
  }
}

.contact {
  background-image: url(../../../assets/img/top/contact.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contact {
    background-image: url(../../../assets/img/top/sp-contact.jpg);
    background-size: contain;
  }
}
.contact__inner {
  max-width: 1023px;
  margin: 0 auto;
  padding: 150px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    padding: 100px 20px;
  }
}
.contact__inner--left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .contact__inner--left {
    width: 100%;
  }
}
.contact__inner--left-ttl {
  font-size: 36px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .contact__inner--left-ttl {
    font-size: 56px;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner--left-ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner--left-ttl {
    font-size: 28px;
  }
}
.contact__inner--left-ttl::after {
  content: "Contact";
  display: block;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact__inner--left-ttl::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner--left-ttl::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner--left-ttl::after {
    font-size: 16px;
  }
}
.contact__inner--left-text {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__inner--left-text {
    margin-bottom: 70px;
  }
}
.contact__inner--right {
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__inner--right {
    width: 100%;
  }
}
.contact__inner--right-tel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contact__inner--right-tel {
    background-color: #fff;
    padding: 0 20px;
    height: 106px;
    border-radius: 8px;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner--right-tel {
    height: 80px;
  }
}
.contact__inner--right-tel img {
  margin-top: 10px;
}
@media screen and (max-width: 500px) {
  .contact__inner--right-tel img {
    width: 30px;
    margin-top: 0;
  }
}
.contact__inner--right-tel a {
  color: #fff;
}
.contact__inner--right-tel p {
  font-size: 56px;
  font-weight: bold;
}
@media screen and (max-width: 1020px) {
  .contact__inner--right-tel p {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner--right-tel p {
    color: #0080cc;
  }
}
@media screen and (max-width: 500px) {
  .contact__inner--right-tel p {
    font-size: 30px;
  }
}
.contact__inner--right-tel p::after {
  content: "電話受付：平日9時〜17時";
  display: block;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .contact__inner--right-tel p::after {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .contact__inner--right-tel p::after {
    font-size: 10px;
  }
}
.contact__inner--right-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0080cc;
  border: 1px solid #0080cc;
  padding: 30px 20px;
  font-weight: bold;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s ease;
}
.contact__inner--right-btn .off {
  display: block;
}
.contact__inner--right-btn .on {
  display: none;
}
.contact__inner--right-btn:hover {
  opacity: 1;
  background: #fff;
  color: #0080cc;
}
.contact__inner--right-btn:hover .off {
  display: none;
}
.contact__inner--right-btn:hover .on {
  display: block;
}
@media screen and (max-width: 768px) {
  .contact__inner--right-btn {
    font-size: 20px;
    padding: 0 20px;
    height: 106px;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner--right-btn {
    height: 80px;
  }
}
@media screen and (max-width: 500px) {
  .contact__inner--right-btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner--right-btn img {
    width: 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact__inner--right-btn img {
    width: 16px;
  }
}

.contact__main {
  padding: 0 40px 110px;
}
@media screen and (max-width: 768px) {
  .contact__main {
    padding: 0 5.3333333333vw 13.3333333333vw;
  }
}
.contact__main--inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__main--inner {
    display: block;
  }
}
.contact__main--form {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__main--form {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}

.contact__flow {
  width: 30%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .contact__flow {
    width: 100%;
    position: unset;
    margin-bottom: 30px;
  }
}
.contact__flow--item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 17px;
  font-weight: 500;
  opacity: 0.4;
  color: #0088fe;
}
.contact__flow--item span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0080cc;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 23px;
}
.contact__flow--item + .contact__flow--item {
  margin-top: 41px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__flow--item + .contact__flow--item {
    margin-top: 30px;
  }
}
.contact__flow--item + .contact__flow--item span {
  position: relative;
}
.contact__flow--item + .contact__flow--item span::before {
  content: "";
  width: 1px;
  height: 43px;
  left: 50%;
  transform: translateX(-50%);
  top: -86%;
  background: #0088fe;
  display: block;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .contact__flow--item + .contact__flow--item span::before {
    top: -65%;
    height: 33px;
  }
}
.contact__flow--item.active {
  opacity: 1;
}

.smf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin-left: auto;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .smf-item {
    width: 100%;
    padding: 20px 0;
    display: block;
  }
}
.smf-item.first {
  padding-top: 0 !important;
}
.smf-item.last {
  align-items: flex-start;
}
.smf-item.last .smf-item__col--label {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .smf-item.last .smf-item__col--label {
    padding-top: 0;
  }
}

.smf-item__col--label {
  width: 28%;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .smf-item__col--label {
    width: 100%;
    margin-bottom: 20px;
  }
}
.smf-item__col--label .required {
  color: #fff;
  font-size: 11px;
  background: #ec3947;
  padding: 6px 8px;
}

.required .smf-item__col--label::after {
  content: "必須";
  color: #fff;
  font-size: 11px;
  background: #ec3947;
  padding: 6px 8px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.smf-form .smf-select-control {
  width: 100%;
  display: block;
}

.smf-placeholder + .smf-placeholder {
  margin: 20px 0;
}

.smf-item__col--controls {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls {
    width: 100%;
  }
}
.smf-item__col--controls input[type=text],
.smf-item__col--controls input[type=tel],
.smf-item__col--controls input[type=email],
.smf-item__col--controls .smf-select-control__control {
  background: #f0f0f0 !important;
  height: 50px;
  width: 100% !important;
  padding: 0 20px;
  border: none !important;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls input[type=text],
  .smf-item__col--controls input[type=tel],
  .smf-item__col--controls input[type=email],
  .smf-item__col--controls .smf-select-control__control {
    padding: 0 20px;
  }
}
.smf-item__col--controls textarea {
  background: #f0f0f0 !important;
  height: 50px;
  width: 100%;
  padding: 0 40px;
  border: none !important;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif !important;
  box-sizing: border-box;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls textarea {
    padding: 0 20px;
    height: 170px;
  }
}

.check textarea {
  height: 120px;
}
.check .smf-item__col--label {
  margin-top: -120px;
}
@media screen and (max-width: 768px) {
  .check .smf-item__col--label {
    margin-top: 0;
  }
}

.smf-checkboxes-control__control .smf-label {
  margin-bottom: 10px;
}

.smf-item__label__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .smf-item__label__text {
    justify-content: flex-start;
    gap: 10px;
  }
}

.smf-action {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .smf-action {
    margin-top: 40px;
  }
}

.smf-button-control__control {
  font-family: "Noto Sans JP", sans-serif !important;
  width: 420px;
  margin: 0 auto;
  border: none !important;
  max-width: 100%;
  height: 80px;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 18px !important;
  background-image: none !important;
  background: #0080cc !important;
  background-position: 95%;
  background-size: 42px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .smf-button-control__control {
    height: 60px;
    background-size: 30px;
    font-size: 16px !important;
    margin: 0 !important;
  }
}

.smf-form {
  position: relative;
}

.smf-button-control__control[data-action=back] {
  width: 280px !important;
  background: #fff !important;
  font-size: 16px !important;
  height: 70px !important;
  border: 1px solid #333 !important;
  color: #333 !important;
}
@media screen and (max-width: 768px) {
  .smf-button-control__control[data-action=back] {
    width: 100% !important;
    height: 60px !important;
    margin-bottom: 20px !important;
  }
}

form[data-screen=confirm] .contact__flow .contact__flow--item:nth-child(1) {
  opacity: 1 !important;
}
form[data-screen=confirm] .contact__flow .contact__flow--item:nth-child(2) {
  opacity: 1 !important;
}
form[data-screen=confirm] .required .smf-item__col--label::after {
  display: none !important;
}
form[data-screen=confirm] .privacyBox + .smf-placeholder {
  display: none !important;
}
form[data-screen=confirm] .privacyBox + .smf-placeholder label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
form[data-screen=confirm] .privacyBox + .smf-placeholder label input {
  margin: 0;
}
form[data-screen=confirm] .privacyBox {
  display: none !important;
}

form[data-screen=complete] .contact__flow .contact__flow--item:nth-child(1) {
  opacity: 1 !important;
}
form[data-screen=complete] .contact__flow .contact__flow--item:nth-child(2) {
  opacity: 1 !important;
}
form[data-screen=complete] .contact__flow {
  opacity: 1 !important;
}
form[data-screen=complete] .required {
  display: none !important;
}

.thanks__title {
  text-align: center;
  margin: 120px auto 30px;
  font-size: 24px;
}

.thanks__message {
  text-align: center;
  line-height: 1.7;
}

.back_btn {
  margin: 50px auto 0;
  max-width: 100%;
  width: 200px;
  height: 50px;
  color: #050505 !important;
  font-weight: 500;
  line-height: 48px;
  font-size: 19px !important;
  background: #fff !important;
  text-align: center;
  border: 1px solid #050505 !important;
  border-radius: 1000px !important;
  display: block;
  font-family: "Josefin Sans", sans-serif;
}

.contact__top {
  padding: 40px 40px;
}
.contact__top--inner {
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__top {
    padding: 40px 20px;
  }
}
.contact__top--main {
  text-align: center;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact__top--main {
    font-size: 14px;
  }
}
.contact__top--box {
  background: #f6fcff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 40px;
}
@media screen and (max-width: 768px) {
  .contact__top--box {
    display: block;
    padding: 40px 20px 20px;
  }
}
.contact__top--box p {
  line-height: 1.7;
  font-size: 14px;
  width: 55%;
}
@media screen and (max-width: 768px) {
  .contact__top--box p {
    width: 100%;
    margin-bottom: 30px;
  }
}
.contact__top--tel {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .contact__top--tel {
    width: 100%;
  }
}
.contact__top--tel .number {
  font-size: 42px;
  font-weight: bold;
  color: #0080cc;
}
@media screen and (max-width: 768px) {
  .contact__top--tel .number {
    font-size: 30px;
  }
}
.contact__top--tel .icon img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .contact__top--tel .icon img {
    width: 32px;
  }
}
.contact__top--tel .tel__top {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .contact__top--tel .tel__top {
    justify-content: center;
  }
}
.contact__top--tel .tel__top .text {
  font-weight: bold;
  font-size: 14px;
  width: 100%;
}

.privacyBox {
  border: 1px solid #dfdfdf;
  height: 130px;
  overflow-y: auto;
  max-width: 670px;
  margin: 30px auto 20px;
  padding: 25px 15px;
}
.privacyBox .wrap {
  height: -moz-max-content;
  height: max-content;
  font-size: 14px;
  line-height: 1.7;
}
.privacyBox .wrap p {
  font-size: 14px;
  line-height: 1.7;
}

.privacyBox + .smf-placeholder label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.privacyBox + .smf-placeholder label input {
  margin: 0;
}

.fv {
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 70vh;
    height: 70svh;
  }
}
.fv__slider {
  height: 100%;
}
.fv img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .fv__inner {
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.fv .fv__inner--box {
  position: absolute;
  left: 0;
  bottom: 120px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner--box {
    bottom: 40px;
  }
}
.fv .fv__inner--box-ttl {
  font-size: 56px;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 10px;
}
@media screen and (max-width: 850px) {
  .fv .fv__inner--box-ttl {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  .fv .fv__inner--box-ttl {
    font-size: 66px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 600px) {
  .fv .fv__inner--box-ttl {
    font-size: 46px;
  }
}
@media screen and (max-width: 450px) {
  .fv .fv__inner--box-ttl {
    font-size: 30px;
  }
}
.fv .fv__inner--box-text {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner--box-text {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 600px) {
  .fv .fv__inner--box-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .fv .fv__inner--box-text {
    font-size: 14px;
  }
}

.news-d {
  padding-top: 100px;
}
.news-d__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px 130px;
}
@media screen and (max-width: 650px) {
  .news-d__inner {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner {
    padding-bottom: 40px;
  }
}
.news-d__inner .tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.news-d__inner .tag a,
.news-d__inner .tag p {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (max-width: 450px) {
  .news-d__inner .tag a,
  .news-d__inner .tag p {
    font-size: 10px;
  }
}
.news-d__inner--ttl {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 650px) {
  .news-d__inner--ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner--ttl {
    font-size: 18px;
  }
}
.news-d__inner .date {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  color: #cacaca;
  font-size: 20px;
  margin-right: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 650px) {
  .news-d__inner .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner .date {
    font-size: 12px;
  }
}
.news-d__inner .category {
  font-size: 14px;
  border: 1px solid #050505;
  color: #050505;
  padding: 0 10px;
}
@media screen and (max-width: 650px) {
  .news-d__inner .category {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner .category {
    font-size: 10px;
  }
}
.news-d__inner img {
  margin-bottom: 40px;
}
.news-d__inner p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .news-d__inner p {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner p {
    font-size: 14px;
  }
}
.news-d__inner .news-contents h2 {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .news-d__inner .news-contents h2 {
    font-size: 18px;
    gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .news-d__inner .news-contents h2 {
    font-size: 16px;
  }
}
.news-d__inner .news-contents h2::before {
  content: "";
  width: 13px;
  height: 40px;
  background-color: #0080cc;
}
@media screen and (max-width: 650px) {
  .news-d__inner .news-contents h2::before {
    width: 11px;
    height: 30px;
  }
}

.news.d {
  background-color: #f6fcff;
}
.news.d .news__inner {
  padding-top: 80px;
}
@media screen and (max-width: 450px) {
  .news.d .news__inner {
    padding-top: 40px;
  }
}

.news__inner {
  margin-left: 200px;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .news__inner {
    margin-left: 20px;
  }
}
.news__inner--ttl {
  font-size: 36px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news__inner--ttl {
    font-size: 56px;
  }
}
@media screen and (max-width: 600px) {
  .news__inner--ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 450px) {
  .news__inner--ttl {
    font-size: 28px;
  }
}
.news__inner--ttl::after {
  content: "News";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .news__inner--ttl::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .news__inner--ttl::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .news__inner--ttl::after {
    font-size: 16px;
  }
}
.news__inner .swiper {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news__inner .swiper {
    padding-bottom: 50px;
  }
}
.news__inner .swiper .swiper-wrapper .swiper-slide .date {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #cacaca;
}
@media screen and (max-width: 768px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .date {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .date {
    font-size: 12px;
  }
}
.news__inner .swiper .swiper-wrapper .swiper-slide .ttl {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .ttl {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .ttl {
    font-size: 16px;
  }
}
.news__inner .swiper .swiper-wrapper .swiper-slide .text {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .news__inner .swiper .swiper-wrapper .swiper-slide .text {
    font-size: 12px;
  }
}
.news__inner .swiper .swiper-pagination-progressbar {
  bottom: 0;
  top: auto;
  height: 2px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .news__inner .swiper .swiper-pagination-progressbar {
    width: 100%;
  }
}

.newsList {
  padding: 100px 40px 90px;
}
@media screen and (max-width: 768px) {
  .newsList {
    padding: 70px 20px;
  }
}
.newsList__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.news__lists {
  border-bottom: 1px solid #dddddd;
}

.news__list {
  color: #000;
  padding: 30px 0;
  display: block;
  border-top: 1px solid #dddddd;
}
.news__list--date {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  color: #cacaca;
}
@media screen and (max-width: 768px) {
  .news__list--date {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .news__list--date {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .news__list--date {
    font-size: 12px;
  }
}
.news__list--title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news__list--title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .news__list--title {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .news__list--title {
    font-size: 16px;
  }
}
.news__list--text {
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news__list--text {
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 650px) {
  .news__list--text {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .news__list--text {
    font-size: 12px;
  }
}

.pagination {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination__lists {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.pagination__list {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: #0599d9;
  color: #fff;
}
.pagination__list.current {
  background: #dadada;
  color: #747474;
}
.pagination__list.prev {
  margin-right: 20px;
  background: none;
}
.pagination__list.next {
  margin-left: 20px;
  background: none;
}

.service__inner {
  max-width: 98%;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 50px 20px;
  }
}
.service__inner--ttl {
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service__inner--ttl {
    font-size: 56px;
  }
}
@media screen and (max-width: 600px) {
  .service__inner--ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 450px) {
  .service__inner--ttl {
    font-size: 28px;
  }
}
.service__inner--ttl::after {
  content: "Service";
  display: block;
  font-size: 16px;
  color: #004ea2;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .service__inner--ttl::after {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .service__inner--ttl::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .service__inner--ttl::after {
    font-size: 16px;
  }
}
.service__inner--box {
  display: block;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service__inner--box {
    margin-bottom: 30px;
  }
}
.service__inner--box img {
  transition: 0.5s ease;
}
.service__inner--box:hover img {
  transform: scale(1.05);
}
.service__inner--box-col {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 2;
  width: 550px;
}
@media screen and (max-width: 768px) {
  .service__inner--box-col {
    right: unset;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
.service__inner--box-col.second {
  left: 0;
  padding-left: 20px;
  padding-right: 20px;
  right: unset;
}
.service__inner--box-col-ttl {
  font-size: 28px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service__inner--box-col-ttl {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 650px) {
  .service__inner--box-col-ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .service__inner--box-col-ttl {
    font-size: 18px;
  }
}
.service__inner--box-col-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service__inner--box-col-text {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 650px) {
  .service__inner--box-col-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .service__inner--box-col-text {
    font-size: 14px;
  }
}

.service__sec {
  padding: 50px 40px 80px;
}
@media screen and (max-width: 768px) {
  .service__sec {
    padding: 70px 20px;
  }
}
.service__sec--inner {
  max-width: 1020px;
  margin: 0 auto;
}
.service__sec--lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 50px;
}
@media screen and (max-width: 768px) {
  .service__sec--lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
.service__sec--list img {
  width: 100%;
}
.service__sec--list h3 {
  margin: 20px 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service__sec--list h3 {
    font-size: 18px;
  }
}
.service__sec--list p {
  font-size: 14px;
  line-height: 1.7;
}

.gallary {
  padding: 0 40px 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallary {
    padding: 0 20px 60px;
  }
}
.gallary__inner {
  max-width: 1020px;
  margin: 0 auto;
}
.gallary .swiper-button-prev:after,
.gallary .swiper-button-next:after {
  display: none;
}
.gallary .swiper-button-prev,
.gallary .swiper-button-next {
  width: 47px;
  height: 47px;
}
.gallary__slider {
  margin-bottom: 30px;
  position: relative;
}
.gallary__slider .img {
  margin-bottom: 15px;
}
.gallary__slider .img img {
  width: 100%;
}
.gallary__slider p {
  font-weight: 500;
}
.gallary__contents {
  margin-bottom: 60px;
}
.gallary__contents h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .gallary__contents h3 {
    font-size: 18px;
  }
}
.gallary__contents p {
  font-size: 14px;
  line-height: 1.7;
}
.gallary__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .gallary__box {
    display: block;
  }
}
.gallary__item {
  width: 47%;
}
.gallary__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .gallary__item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.gallary__item--img {
  margin-bottom: 20px;
}
.gallary__item h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .gallary__item h3 {
    font-size: 18px;
  }
}
.gallary__item p {
  font-size: 14px;
  line-height: 1.7;
}/*# sourceMappingURL=style.css.map */

.smf-action .smf-button-control+.smf-button-control {
	margin-left:0 !important;
}