@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--color_txt);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: linear-gradient(0deg, rgb(255, 255, 255), rgb(240, 247, 255) 50%, rgb(255, 255, 255));
}

p, dd {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
    font-weight: 600;
  }
  h2 {
    font-size: 2.8rem;
    font-weight: 600;
  }
  h3 {
    font-size: 2.2rem;
    font-weight: 600;
  }
  h4 {
    font-size: 1.8rem;
    font-weight: 600;
  }
  h5 {
    font-size: 1.6rem;
    font-weight: 600;
  }
  h6 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  p,
  li,
  dt,
  dd,
  input,
  textarea,
  select {
    font-size: 1.6rem;
    font-weight: 500;
  }
  caption {
    font-size: 1.3rem;
    font-weight: 500;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2.8rem;
    font-weight: 600;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 600;
  }
  h3 {
    font-size: 2rem;
    font-weight: 600;
  }
  h4 {
    font-size: 1.6rem;
    font-weight: 600;
  }
  h5 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  h6 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  p,
  li,
  dt,
  dd {
    font-size: 1.5rem;
    font-weight: 500;
  }
  caption {
    font-size: 1.2rem;
    font-weight: 500;
  }
  img {
    width: 100%;
    height: auto;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .pc-none {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
:root {
  --color_txt: #111;
  --color_main: #0667d3;
  --color_sub: #c4960b;
  --color_bg: #eef2f7;
  --color_bd: #b7b7b7;
  --color_gy: #898989;
  --padding_sp: 4em;
  --ff-mincho: "Zen Old Mincho", serif;
}

.trans {
  transition: 0.3s;
}
.trans:hover {
  opacity: 0.7;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.fc-bl {
  color: var(--color_main);
}

.fc-gd {
  color: var(--color_sub);
}

.col-2 {
  display: flex;
  flex-wrap: wrap;
}

.col-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 3.8%;
}
.col-3 > div {
  width: 30.8%;
}

.com-table {
  width: 100%;
  border: 1px solid var(--color_main);
  border-collapse: collapse;
}
.com-table__row:last-of-type .com-table__label {
  border-bottom: none;
}
.com-table__label {
  width: 24.1%;
  padding: 0.88em 1.66em;
  border-bottom: 1px solid #fff;
  background: var(--color_main);
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
}
.com-table__text {
  width: 75.9%;
  padding: 0.88em 1.66em;
  border-bottom: 1px solid var(--color_main);
  background: #fff;
  line-height: 1.8;
  vertical-align: middle;
  font-weight: 500;
}

.com-action {
  padding-bottom: 6.7em;
}
.com-action__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  aspect-ratio: 1280/530;
  padding-right: 2.7%;
  background: url(../img/layout/footer/bg.jpg) no-repeat center bottom/cover;
}
.com-action__body {
  position: relative;
  z-index: 1;
  width: 37.8%;
  padding: 2.8em 1.9em;
  background: rgba(255, 255, 255, 0.9);
}
.com-action__body::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 7.4%;
  aspect-ratio: 1/1;
  background: var(--color_sub);
}
.com-action__body .tit-primary {
  margin-bottom: 1.7em;
  padding-bottom: 1.1em;
  border-bottom: 2px solid var(--color_sub);
}
.com-action__body .tit-primary h3 {
  font-size: 2em;
}
.com-action__txt {
  line-height: 2.2;
}
.com-action__button {
  margin-top: 1.7em;
}
.com-action__button a {
  padding-left: 2.2em;
}

@media only screen and (max-width: 767px) {
  .col-2 .txt-block {
    width: 100% !important;
  }
  .col-2 .img-block {
    width: 100% !important;
  }
  .col-3 > div {
    width: 100%;
  }
  .com-table {
    display: block;
  }
  .com-table__body {
    display: block;
  }
  .com-table__row {
    display: block;
  }
  .com-table__row .com-table__text {
    border-bottom: none;
  }
  .com-table__label {
    display: block;
    width: 100%;
    padding: 0.55em 0.88em;
    font-size: 0.8em;
  }
  .com-table__text {
    display: block;
    width: 100%;
    padding: 0.55em 0.88em;
    font-size: 0.8em;
  }
  .com-action {
    padding-bottom: 3.3em;
  }
  .com-action__inner {
    display: block;
    aspect-ratio: auto;
    padding: 12% 0;
    background-position: center center;
  }
  .com-action__body {
    width: 90%;
    margin: 0 auto;
    padding: 1.7em 1.1em;
  }
  .com-action__body::before {
    width: 1em;
  }
  .com-action__body .tit-primary h3 {
    font-size: 1.3em;
  }
  .com-action__txt {
    font-size: 0.8em;
    line-height: 1.8;
  }
  .com-action__button {
    text-align: center;
  }
  .com-action__button a {
    width: 100%;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

.thumbnail {
  position: relative;
  overflow: hidden;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

@media only screen and (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
  }
  .inner--s {
    width: 56.25%;
    min-width: 1080px;
    margin: 0 auto;
  }
  .inner--m {
    width: 66.5%;
    min-width: 1200px;
    margin: 0 auto;
  }
  .inner--l {
    width: 87.5%;
    min-width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .inner--s,
  .inner--m,
  .inner--l {
    width: 95%;
    margin: 0 auto;
  }
}
.wysiwyg a {
  text-decoration: underline;
}
.wysiwyg img {
  width: 100%;
}
.wysiwyg em,
.wysiwyg i {
  font-style: italic;
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 900;
}
.wysiwyg pre,
.wysiwyg code {
  text-align: justify;
  text-justify: inter-ideograph;
}
.wysiwyg u {
  text-decoration: underline;
}
.wysiwyg del {
  text-decoration: line-through;
}
.wysiwyg ol,
.wysiwyg ul {
  padding-left: 20px;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg blockquote {
  display: block;
  width: 100%;
  background: #efefef;
  padding: 15px;
  box-sizing: border-box;
}
.wysiwyg blockquote p {
  color: #555555;
  font-style: italic;
}
.wysiwyg blockquote p::before {
  content: "“";
}
.wysiwyg blockquote p::after {
  content: "”";
}
.wysiwyg .table_wrapper table {
  width: 100%;
  min-width: auto;
  border-collapse: collapse;
}
.wysiwyg .table_wrapper th,
.wysiwyg .table_wrapper td {
  font-weight: 600;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid #cccccc;
}
@media only screen and (min-width: 768px) {
  .wysiwyg .table_wrapper th,
  .wysiwyg .table_wrapper td {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .wysiwyg .table_wrapper th,
  .wysiwyg .table_wrapper td {
    font-size: 1.5rem;
  }
}

.tit-primary {
  margin-bottom: 3.3em;
  font-family: var(--ff-mincho);
  text-align: center;
}
.tit-primary .sub {
  color: var(--color_sub);
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1;
}
.tit-primary h3 {
  margin-top: 0.2em;
  color: var(--color_txt);
  font-family: var(--ff-mincho);
  font-size: 2.66em;
}
.tit-primary.ta-c {
  text-align: center;
}
.tit-primary.ta-l {
  text-align: left;
}

.tit-secondary {
  margin-bottom: 1.1em;
  padding-bottom: 0.7em;
  border-bottom: 2px solid var(--color_sub);
  color: var(--color_txt);
  font-family: var(--ff-mincho);
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1;
}
.tit-secondary.is-bl {
  border-bottom-color: var(--color_main);
}

.tit-band {
  display: inline-block;
  padding: 0.42em 1.6em;
  background: var(--color_main);
  clip-path: polygon(0.83em 0, 100% 0, calc(100% - 0.83em) 100%, 0 100%);
  color: #fff;
  font-family: var(--ff-mincho);
  font-size: 1.33em;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.tit-band--gd {
  background: var(--color_sub);
}

.tit-line {
  display: flex;
  align-items: center;
  gap: 0 0.88em;
  margin-bottom: 1.11em;
  color: var(--color_txt);
  font-family: var(--ff-mincho);
  font-size: 1.77em;
  font-weight: 900;
  line-height: 1;
}
.tit-line::before {
  content: "";
  display: block;
  width: 1.88em;
  height: 2px;
  background: var(--color_main);
}

@media only screen and (max-width: 767px) {
  .tit-primary {
    margin-bottom: 1.7em;
  }
  .tit-primary .sub {
    font-size: 0.9em;
  }
  .tit-primary h3 {
    font-size: 1.6em;
  }
  .tit-secondary {
    font-size: 1.2em;
  }
  .tit-band {
    font-size: 1.05em;
  }
  .tit-line {
    font-size: 1.25em;
  }
}
.button--pattern-1, .button--pattern-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.8em;
  padding: 0.9em 0.9em 0.9em 1.7em;
  border-radius: 3.3em;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}
.button--pattern-1:hover, .button--pattern-2:hover {
  opacity: 0.7;
}
.button--pattern-1 .icon, .button--pattern-2 .icon {
  font-size: 1.3em;
  line-height: 1;
}
.button--pattern-1 {
  background: var(--color_main);
}
.button--pattern-1.is-wh {
  background: #fff;
  color: var(--color_main);
}
.button--pattern-2 {
  background: var(--color_sub);
}

@media only screen and (max-width: 767px) {
  .button--pattern-1, .button--pattern-2 {
    font-size: 0.8em;
    padding: 15px 10px;
  }
}
p {
  margin: 0;
  padding: 0;
}
p:empty {
  display: none;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mwform-hidden {
  display: none !important;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__zip {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__zip .p-country-name {
  display: none;
}
.form__row {
  display: flex;
  gap: 5%;
}
.form__head {
  width: 35%;
}
.form__label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  box-sizing: border-box;
}
.form__title {
  font-size: 1.6rem;
}
.form__tag {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 5px 10px;
}
.form__tag--required {
  color: #ffffff;
  background: #B40019;
}
.form__tag--optional {
  background: #B3B2B3;
}
.form__body {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.form__body input[type=text],
.form__body input[type=email],
.form__body input[type=tel],
.form__body input[type=url],
.form__body input[type=file],
.form__body textarea,
.form__body select {
  display: block;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  font-size: 1.6rem;
}
.form__body input[type=text]::-moz-placeholder, .form__body input[type=email]::-moz-placeholder, .form__body input[type=tel]::-moz-placeholder, .form__body input[type=url]::-moz-placeholder, .form__body input[type=file]::-moz-placeholder, .form__body textarea::-moz-placeholder, .form__body select::-moz-placeholder {
  color: #a5a5a5;
}
.form__body input[type=text]::placeholder,
.form__body input[type=email]::placeholder,
.form__body input[type=tel]::placeholder,
.form__body input[type=url]::placeholder,
.form__body input[type=file]::placeholder,
.form__body textarea::placeholder,
.form__body select::placeholder {
  color: #a5a5a5;
}
.form__body input[type=text]:focus,
.form__body input[type=email]:focus,
.form__body input[type=tel]:focus,
.form__body input[type=url]:focus,
.form__body input[type=file]:focus,
.form__body textarea:focus,
.form__body select:focus {
  outline: 1px solid #333333;
}
.form__radios, .form__checkboxs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__privacy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form__link {
  font-size: 1.4rem;
  font-weight: 500;
}
.form__link a {
  border-bottom: 1px solid #333333;
}
.form__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}
.form__button {
  display: flex;
  width: 320px;
  background: #c4960b;
  border: none;
  box-sizing: border-box;
  border-radius: 90px;
  padding: 25px 20px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form__button:hover {
  cursor: pointer;
}
.form__addr-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.form__addr-zip {
  display: flex;
  align-items: center;
  gap: 2%;
  width: 100%;
}
.form__addr-zip input {
  width: 83%;
}
.form__addr-zip button {
  width: 15%;
  background: #003153;
  padding: 10px 0;
  box-sizing: border-box;
  color: #ffffff;
}
.form__addr-prefcity {
  display: flex;
  gap: 3%;
  width: 100%;
}
.form__addr-prefcity select {
  display: block;
  width: 48.5%;
}
.form__addr-rest {
  width: 100%;
}

.mw_wp_form_confirm .form__body {
  padding: 15px 0;
}

@media only screen and (max-width: 767px) {
  .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form__zip {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form__row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .form__head {
    width: 100%;
  }
  .form__label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
  }
  .form__title {
    font-size: 1.5rem;
  }
  .form__tag {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
  .form__body {
    display: flex;
    width: 100%;
  }
  .form__body input[type=text],
  .form__body input[type=email],
  .form__body input[type=tel],
  .form__body input[type=url],
  .form__body input[type=file],
  .form__body textarea,
  .form__body select {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.5rem;
  }
  .form__radios, .form__checkboxs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .form__privacy {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .form__link {
    font-size: 1.4rem;
  }
  .form__buttons {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
  }
  .form__button {
    display: flex;
    width: 320px;
    padding: 20px;
    font-size: 1.5rem;
  }
  .form__addr-zip {
    display: flex;
    align-items: center;
    gap: 2%;
    width: 100%;
  }
  .form__addr-zip input {
    width: 70%;
  }
  .form__addr-zip button {
    width: 28%;
    padding: 10px 0;
    font-size: 1.4rem;
  }
  .mw_wp_form_confirm .form__body {
    padding: 0;
  }
}
.header {
  position: relative;
  z-index: 1;
}
.header__contents {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0 1.15em;
  width: 94.6%;
  padding-top: 1.7em;
}
.header__logo {
  flex-shrink: 0;
  width: 5.5%;
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0 2.2em;
  margin-left: auto;
}
.header__list {
  display: flex;
  gap: 0 2.2em;
}
.header__list .text {
  color: #fff;
  font-weight: 700;
}
.header__list a {
  transition: 0.3s;
}
.header__list a:hover {
  opacity: 0.7;
}
.header__sub {
  display: flex;
  align-items: center;
}
.header__cta {
  flex-shrink: 0;
}
.header__cta .button {
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}

.mv {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}
.mv--top {
  aspect-ratio: 1920/1000;
  font-size: clamp(0.7em, 1.04vw, 1.1em);
  background-image: url(../img/layout/header/visual--top.jpg);
}
.mv--sub {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1920/620;
  background-position: center bottom;
}
.mv--about {
  background-image: url(../img/layout/header/visual--about.jpg);
}
.mv--service {
  background-image: url(../img/layout/header/visual--service.jpg);
}
.mv--faq {
  background-image: url(../img/layout/header/visual--faq.jpg);
}
.mv--company {
  background-image: url(../img/layout/header/visual--company.jpg);
}
.mv--news {
  background-image: url(../img/layout/header/visual--news.jpg);
}
.mv--contact {
  background-image: url(../img/layout/header/visual--contact.jpg);
}
.mv--complete {
  background-image: url(../img/layout/header/visual--complete.jpg);
}
.mv--privacy {
  background-image: url(../img/layout/header/visual--privacy.jpg);
}
.mv--site {
  background-image: url(../img/layout/header/visual--site.jpg);
}
.mv--notfound {
  background-image: url(../img/layout/header/visual--notfound.jpg);
}
.mv__sub-title {
  position: relative;
  z-index: 1;
  padding-top: 3em;
  color: #fff;
  font-family: var(--ff-mincho);
  text-align: center;
}
.mv__sub-title .en {
  display: block;
  font-size: 1.55em;
  line-height: 1;
  letter-spacing: 0.05em;
}
.mv__sub-title h1 {
  margin-top: 0.15em;
  color: #fff;
  font-family: var(--ff-mincho);
  font-size: 3.55em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.mv__contents {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__title {
  position: absolute;
  top: 69.9%;
  left: 58%;
}
.mv__heading {
  color: #fff;
  font-family: var(--ff-mincho);
  font-size: 3.11em;
  letter-spacing: 0.1em;
}
.mv__en {
  position: absolute;
  bottom: -0.06em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
  font-family: var(--ff-mincho);
  font-size: 4.6em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .header__contents {
    width: 100%;
    padding: 20px 15px;
  }
  .header__logo {
    width: 60px;
  }
  .mv--top {
    width: 100%;
    height: 450px;
    aspect-ratio: auto;
    font-size: 0.9em;
    background-position: 0 0;
  }
  .mv--sub {
    aspect-ratio: 375/220;
  }
  .mv__sub-title {
    padding-top: 0;
  }
  .mv__sub-title .en {
    font-size: 1em;
  }
  .mv__sub-title h1 {
    font-size: 1.7em;
  }
  .mv__title {
    top: auto;
    bottom: 50px;
    left: 10px;
  }
  .mv__heading {
    font-size: 2.2rem;
    text-shadow: 0.2em 0.2em 1em rgb(50, 79, 119);
  }
  .mv__en {
    font-size: 2.4rem;
  }
}
.footer-bar {
  padding: 4.4em 0 2.7em;
  background: var(--color_bg);
}
.footer-bar__wrapper {
  display: flex;
  justify-content: space-between;
}
.footer-bar__wrapper--top {
  align-items: flex-start;
}
.footer-bar__wrapper--bottom {
  align-items: center;
  margin-top: 8.3em;
  padding-top: 0.9em;
  border-top: 1px solid var(--color_txt);
}
.footer-bar__contents {
  width: 50%;
}
.footer-bar__logo {
  display: block;
  width: 17.8%;
}
.footer-bar__logo img {
  width: 100%;
}
.footer-bar__address {
  margin-top: 2.1em;
  font-size: 0.8em;
  line-height: 1.5;
}
.footer-bar__list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
  gap: 1.7em;
  line-height: 1;
}
.footer-bar__item:nth-child(4) {
  grid-column-start: 1;
}
.footer-bar__item a {
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}
.footer-bar__item a:hover {
  color: var(--color_main);
}
.footer-bar__copyright {
  font-size: 0.7em;
  line-height: 1;
}
.footer-bar__copyright a {
  transition: 0.3s;
}
.footer-bar__copyright a:hover {
  color: var(--color_main);
}
.footer-bar__links {
  display: flex;
  gap: 0 1.1em;
}
.footer-bar__link a {
  font-size: 0.8em;
  line-height: 1;
  transition: 0.3s;
}
.footer-bar__link a:hover {
  color: var(--color_main);
}

@media only screen and (max-width: 767px) {
  .footer-bar {
    padding: 2.2em 0 1.7em;
  }
  .footer-bar__wrapper--top {
    display: block;
  }
  .footer-bar__wrapper--bottom {
    display: block;
    margin-top: 1.7em;
    text-align: center;
  }
  .footer-bar__contents {
    width: 100%;
  }
  .footer-bar__logo {
    width: 30%;
    margin: 0 auto;
  }
  .footer-bar__address {
    text-align: center;
  }
  .footer-bar__list {
    display: none;
  }
  .footer-bar__copyright {
    font-size: 0.6em;
    text-align: center;
    line-height: 1.6;
  }
  .footer-bar__links {
    display: none;
  }
}
.drawer-off__button {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  background: var(--color_main);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
}
.drawer-off__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.drawer-off__wrapper {
  display: flex;
  flex-direction: column;
}
.drawer-off__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.drawer-off__line span {
  display: block;
  width: 30px;
  height: 1px;
  background: #ffffff;
}
.drawer-off__title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.drawer-on {
  width: 100%;
  height: 100svh;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-on.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 100;
}
.drawer-on__header {
  display: flex;
  padding: 20px 15px;
  box-sizing: border-box;
}
.drawer-on__logo {
  width: 60px;
}
.drawer-on__inner {
  padding: 0 15px;
  box-sizing: border-box;
}
.drawer-on__item {
  display: flex;
}
.drawer-on__item a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
.drawer-on__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.drawer-on__link {
  display: flex;
}
.drawer-on__link a {
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}
.drawer-on__group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.drawer-on__sns {
  width: 25px;
}
.drawer-on__button {
  margin-top: 20px;
}
.drawer-on__button--line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  background: linear-gradient(135deg, var(--color_main) 0%, #68788d 100%);
  box-sizing: border-box;
  border-radius: 8px;
}
.drawer-on__button--line .icon {
  width: 25px;
}
.drawer-on__button--line .text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
.drawer-on__button--mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  border: 1px solid var(--color_main);
  padding: 15px;
  box-sizing: border-box;
  border-radius: 8px;
}
.drawer-on__button--mail .icon, .drawer-on__button--mail .text {
  color: var(--color_main);
}
.drawer-on__button--mail .text {
  font-size: 1.5rem;
  font-weight: 500;
}
.drawer-on__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  padding: 15px 20px;
  margin-top: 20px;
}
.drawer-on__tel .link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.drawer-on__tel .link .text {
  font-size: 3.2rem;
  font-weight: 500;
}
.drawer-on__tel .caption {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background: #ffffff;
  padding: 5px;
  box-sizing: border-box;
}

.breadcrumb {
  padding: 15px 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 87.5%;
  min-width: 1200px;
  margin: 0 auto;
}
.breadcrumb__item {
  font-size: 1.5rem;
  line-height: 1;
  padding-right: 10px;
  border-right: 1px solid #000000;
}
.breadcrumb__item:last-child {
  border: none;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.pagination {
  margin-top: 30px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-numbers li span, .page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1;
}
.page-numbers li span.current {
  background: #c4960b;
  color: #ffffff;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 20px;
  }
  .page-numbers li span, .page-numbers li a {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
  }
  .page-numbers li span.current {
    font-size: 1.8rem;
  }
}
.navigation {
  margin-top: 80px;
}
.navigation__list {
  display: flex;
  justify-content: center;
  position: relative;
}
.navigation__item--prev {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation__item--archive {
  text-align: center;
}
.navigation__item--next {
  position: absolute;
  top: 0;
  right: 0;
}
.navigation__link {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.top-news {
  padding: 8.3em 0;
}
.top-news__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 6.2%;
}
.top-news__button {
  position: absolute;
  bottom: 0;
  left: 9%;
}
.top-news__list {
  width: 67.9%;
}
.top-news__item {
  padding-bottom: 1.4em;
  border-bottom: 1px solid var(--color_bd);
}
.top-news__item + .top-news__item {
  margin-top: 1.4em;
}
.top-news__item a {
  display: block;
  transition: 0.3s;
}
.top-news__item a:hover {
  opacity: 0.7;
}
.top-news__item .info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-news__item .date {
  display: block;
  color: var(--color_bd);
  font-size: 0.9em;
  line-height: 1;
}
.top-news__item .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.top-news__item .tag {
  color: var(--color_main);
  font-size: 1.3rem;
  font-weight: 700;
}
.top-news__item .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 4.4em;
  margin-top: 5px;
}
.top-news__item .title {
  overflow: hidden;
  line-height: 1.8;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top-news__item .icon {
  color: var(--color_main);
  font-size: 0.9em;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .top-news {
    padding: 3.3em 0;
  }
  .top-news__inner {
    display: block;
    padding: 0;
  }
  .top-news__title .sub {
    text-align: center;
  }
  .top-news__button {
    position: relative;
    left: auto;
    margin-top: 1.7em;
    text-align: center;
  }
  .top-news__list {
    width: 100%;
  }
  .top-news__item .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .top-news__item .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 5px;
  }
  .top-news__item .tag {
    font-size: 1.2rem;
  }
  .top-news__item .wrapper {
    gap: 0 1.1em;
    margin-top: 5px;
  }
  .top-news__item .title {
    font-size: 1.5rem;
  }
}
.top-about {
  padding: 6.7em 0;
  background: url(../img/pages/top/about/bg.jpg) no-repeat center center/cover;
}
.top-about__contents {
  justify-content: space-between;
}
.top-about__img {
  width: 43%;
}
.top-about__img img {
  width: 100%;
}
.top-about__txt {
  width: 50.8%;
}
.top-about__desc {
  line-height: 1.8;
}
.top-about__desc p + p {
  margin-top: 1.8em;
}
.top-about__button {
  margin-top: 2.2em;
}

.top-service {
  padding: 6.7em 0;
}
.top-service__item {
  display: flex;
  align-items: center;
  aspect-ratio: 1280/569;
}
.top-service__item--01 {
  justify-content: flex-end;
  padding-right: 2.7%;
  background: url(../img/pages/top/service/bg--01.jpg) no-repeat center bottom/cover;
}
.top-service__item--02 {
  justify-content: flex-start;
  padding-left: 2.7%;
  background: url(../img/pages/top/service/bg--02.jpg) no-repeat center bottom/cover;
}
.top-service__item--02 .top-service__card::before {
  background: var(--color_sub);
}
.top-service__card {
  position: relative;
  z-index: 1;
  width: 49.4%;
  padding: 2.8em 1.9em;
  background: rgba(255, 255, 255, 0.9);
}
.top-service__card::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 5.7%;
  aspect-ratio: 1/1;
  background: var(--color_main);
}
.top-service__txt {
  line-height: 2.2;
}
.top-service__button {
  margin-top: 3.3em;
}

.top-company__contents {
  justify-content: space-between;
}
.top-company__img {
  width: 53.1%;
}
.top-company__img img {
  width: 100%;
  aspect-ratio: 680/450;
}
.top-company__txt {
  width: 40.6%;
}
.top-company__desc {
  line-height: 1.8;
}
.top-company__faq {
  width: 77.1%;
  margin-top: 2.8em;
  padding: 1.4em 2.2em;
  border-radius: 0.4em;
  background: var(--color_bg);
}
.top-company__faq .tit-secondary {
  margin-bottom: 0.7em;
}
.top-company__button {
  margin-top: 1.1em;
}

@media only screen and (max-width: 767px) {
  .top-about {
    padding: 3.3em 0;
  }
  .top-about__img {
    margin-bottom: 1.7em;
  }
  .top-about__desc {
    font-size: 0.8em;
  }
  .top-about__button {
    text-align: center;
  }
  .top-about__button a {
    width: 45%;
  }
  .top-service {
    padding: 3.3em 0;
  }
  .top-service__item {
    display: block;
    aspect-ratio: auto;
  }
  .top-service__item--01 {
    padding: 12% 0;
    background-position: center center;
  }
  .top-service__item--02 {
    padding: 12% 0;
    background-position: center center;
  }
  .top-service__card {
    width: 90%;
    margin: 0 auto;
    padding: 1.7em 1.1em;
  }
  .top-service__card::before {
    width: 1em;
  }
  .top-service__txt {
    font-size: 0.8em;
    line-height: 1.8;
  }
  .top-service__button {
    margin-top: 1.7em;
  }
  .top-service__button a {
    width: 45%;
  }
  .top-company__img {
    margin-bottom: 1.7em;
  }
  .top-company__desc {
    font-size: 0.8em;
  }
  .top-company__faq {
    width: 100%;
    margin-top: 1.7em;
    padding: 1.3em;
  }
  .top-company__button {
    text-align: center;
  }
  .top-company__button a {
    width: 45%;
  }
}
.about-target {
  padding: 5.6em 0;
}
.about-target .tit-primary {
  margin-bottom: 5.6em;
}
.about-target__item {
  display: flex;
  width: 85.2%;
  margin: 0 auto;
}
.about-target__item + .about-target__item {
  margin-top: 4.4em;
}
.about-target__label {
  width: 27.2%;
  color: var(--color_main);
  font-family: var(--ff-mincho);
}
.about-target__label .en {
  font-size: 2.22em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.about-target__label .ja {
  margin-top: 0.66em;
  font-size: 1.33em;
  font-weight: 700;
  line-height: 1.4;
}
.about-target__label--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 1.7em;
}
.about-target__label--gd {
  color: var(--color_sub);
}
.about-target__body {
  width: 72.8%;
}
.about-target__desc {
  line-height: 1.8;
}
.about-target__desc p + p {
  margin-top: 1.8em;
}
.tit-band + .about-target__desc {
  margin-top: 1.95em;
}
.about-target__value {
  margin-top: 4.4em;
}
.about-target__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.9%;
  width: 96.3%;
  margin: 0 auto;
}
.about-target__col {
  width: 31.4%;
  text-align: center;
}
.about-target__col .about-target__desc {
  text-align: left;
}

.about-reason {
  padding: 5.6em 0 8.3em;
}
.about-reason .tit-primary {
  margin-bottom: 5.6em;
}
.about-reason__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.4em 7.4%;
}
.about-reason__item {
  width: 46.3%;
}
.about-reason__num {
  color: var(--color_main);
  font-family: var(--ff-mincho);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.about-reason__num .num {
  font-size: 2em;
}
.about-reason__title {
  margin-top: 1.11em;
  color: var(--color_txt);
  font-family: var(--ff-mincho);
  font-size: 1.55em;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.about-reason__img {
  margin-top: 1.66em;
}
.about-reason__img img {
  width: 100%;
  aspect-ratio: 500/350;
}
.about-reason__desc {
  margin-top: 1.66em;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .about-target {
    padding: 3.3em 0;
  }
  .about-target .tit-primary {
    margin-bottom: 2.2em;
  }
  .about-target__item {
    display: block;
    width: 100%;
  }
  .about-target__item + .about-target__item {
    margin-top: 2.2em;
  }
  .about-target__label {
    width: 100%;
    margin-bottom: 1.1em;
    text-align: center;
  }
  .about-target__label .en {
    font-size: 1.5em;
  }
  .about-target__label .ja {
    margin-top: 0.3em;
    font-size: 1.05em;
  }
  .about-target__body {
    width: 100%;
  }
  .about-target__desc {
    font-size: 0.8em;
  }
  .about-target__value {
    margin-top: 2.2em;
  }
  .about-target__list {
    display: block;
    width: 100%;
  }
  .about-target__col {
    width: 100%;
  }
  .about-target__col + .about-target__col {
    margin-top: 2.2em;
  }
  .about-reason {
    padding: 3.3em 0;
  }
  .about-reason .tit-primary {
    margin-bottom: 2.2em;
  }
  .about-reason__list {
    display: block;
  }
  .about-reason__item {
    width: 100%;
  }
  .about-reason__item + .about-reason__item {
    margin-top: 2.7em;
  }
  .about-reason__num .num {
    font-size: 1.6em;
  }
  .about-reason__title {
    font-size: 1.2em;
  }
  .about-reason__desc {
    font-size: 0.8em;
  }
}
.service-list {
  padding: 5.6em 0 8.3em;
}
.service-list .tit-primary {
  margin-bottom: 4.4em;
}
.service-list .tit-band--lg {
  margin-bottom: 0.53em;
  padding: 0.5em 1.25em;
  clip-path: polygon(0.44em 0, 100% 0, calc(100% - 0.44em) 100%, 0 100%);
  font-size: 2.5em;
  line-height: 1;
}
.service-list__lead {
  margin-bottom: 5.6em;
  line-height: 1.8;
}
.service-list__item + .service-list__item {
  margin-top: 5.6em;
}
.service-list__main {
  text-align: center;
}
.service-list__desc {
  width: 77.8%;
  margin: 0 auto;
  line-height: 1.8;
}
.service-list__desc p {
  text-align: center;
}
.service-list__desc p + p {
  margin-top: 1.8em;
}
.service-list__img {
  margin-top: 2.2em;
}
.service-list__img img {
  width: 100%;
  aspect-ratio: 1080/612;
}
.service-list__sub {
  justify-content: space-between;
  margin-top: 3.3em;
}
.service-list__box {
  width: 48%;
  padding: 1.7em 1.7em 2.2em;
  border-radius: 0.4em;
  background: #fff;
}
.service-list__box .tit-secondary {
  color: var(--color_main);
  border-bottom-style: dashed;
}
.service-list__points li {
  position: relative;
  z-index: 1;
  padding-left: 1em;
  font-size: 0.88em;
}
.service-list__points li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  content: "";
  display: block;
  width: 0.44em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color_main);
}
.service-list__points li + li {
  margin-top: 0.66em;
}
.service-list__case {
  width: 88.9%;
  margin: 3.3em auto 0;
  padding: 1.7em 2.8em;
  border-radius: 0.44em;
  background: #fff;
}
.service-list__case .tit-secondary {
  color: var(--color_main);
  border-bottom-style: dashed;
}
.service-list__case .tit-secondary {
  margin-bottom: 0.83em;
  border-bottom-style: dashed;
  color: var(--color_main);
}
.service-list__case-head {
  margin-bottom: 1.33em;
  color: var(--color_main);
  font-family: var(--ff-mincho);
  text-align: center;
}
.service-list__case-head .num {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.service-list__case-head .no {
  font-size: 2em;
}
.service-list__case-head .target {
  margin-left: 1.33em;
  font-size: 1.11em;
  font-weight: 900;
}
.service-list__case-list .label {
  display: inline-block;
  padding: 0 1em;
  border-radius: 0.25em;
  background: var(--color_bd);
  color: #fff;
  font-size: 0.88em;
  font-weight: 700;
  line-height: 1.8;
}
.service-list__case-list .label--plan {
  background: var(--color_main);
}
.service-list__case-list .label--result {
  background: var(--color_sub);
}
.service-list__case-list .text {
  margin-top: 0.55em;
  font-size: 0.88em;
  line-height: 1.8;
}
.service-list__case-list .text + .label {
  margin-top: 1.33em;
}
.service-list__case-list .em {
  color: var(--color_sub);
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .service-list {
    padding: 3.3em 0;
  }
  .service-list .tit-primary {
    margin-bottom: 1.7em;
  }
  .service-list .tit-band--lg {
    margin-bottom: 0.8em;
    font-size: 1.4em;
  }
  .service-list__lead {
    padding: 0 1em;
    margin-bottom: 2.2em;
  }
  .service-list__item + .service-list__item {
    margin-top: 3.3em;
  }
  .service-list__desc {
    width: 100%;
  }
  .service-list__sub {
    margin-top: 2.2em;
  }
  .service-list__box {
    width: 100%;
    padding: 1.3em;
  }
  .service-list__box + .service-list__box {
    margin-top: 1.7em;
  }
  .service-list__case {
    width: 100%;
    margin-top: 2.2em;
    padding: 1.3em;
  }
}
.faq-list {
  padding: 5.6em 0 8.3em;
}
.faq-list .tit-primary {
  margin-bottom: 4.4em;
}
.faq-list__anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1em 2.7em;
  margin-bottom: 5.6em;
}
.faq-list__category + .faq-list__category {
  margin-top: 6.1em;
}
.faq-list__item {
  overflow: hidden;
  border-radius: 8px;
}
.faq-list__item + .faq-list__item {
  margin-top: 1.1em;
}
.faq-list__item .question {
  display: flex;
  gap: 0 1.1em;
  padding: 1.1em;
  background: var(--color_main);
  font-size: 1.33em;
  font-weight: 700;
  color: #fff;
}
.faq-list__item .question .mark {
  display: inline-block;
}
.faq-list__item .answer {
  padding: 1.1em;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .faq-list {
    padding: 3.3em 0;
  }
  .faq-list .tit-primary {
    margin-bottom: 1.7em;
  }
  .faq-list__anchor {
    width: 95%;
    gap: 15px 3%;
    margin: 0 auto 2.2em;
  }
  .faq-list__anchor-item {
    width: 48.5%;
  }
  .faq-list__anchor-item .button {
    width: 100%;
  }
  .faq-list__category + .faq-list__category {
    margin-top: 2.2em;
  }
  .faq-list__item .question {
    font-size: 1em;
  }
}
.company-greeting {
  padding: 5.6em 0;
}
.company-greeting .tit-primary {
  margin-bottom: 5.6em;
}
.company-greeting__contents {
  justify-content: space-between;
}
.company-greeting__img {
  width: 39%;
}
.company-greeting__img img {
  width: 100%;
  aspect-ratio: 420/600;
}
.company-greeting__txt {
  width: 54.4%;
}
.company-greeting__desc {
  line-height: 1.8;
}
.company-greeting__desc p + p {
  margin-top: 1.8em;
}
.company-greeting__name {
  margin-top: 2.2em;
  font-family: var(--ff-mincho);
  font-weight: 900;
}
.company-greeting__name .role {
  font-size: 0.9em;
}
.company-greeting__name .name {
  margin-left: 0.88em;
  font-size: 1.55em;
}

.company-info {
  padding: 5.6em 0 8.3em;
}
.company-info__map {
  margin-top: 3.3em;
}
.company-info__map-img iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/400;
}

@media only screen and (max-width: 767px) {
  .company-greeting {
    padding: 3.3em 0;
  }
  .company-greeting .tit-primary {
    margin-bottom: 2.2em;
  }
  .company-greeting__img {
    margin-bottom: 1.7em;
  }
  .company-greeting__desc {
    font-size: 0.8em;
  }
  .company-greeting__name .name {
    font-size: 1.05em;
  }
  .company-info {
    padding: 3.3em 0;
  }
  .company-info__map {
    margin-top: 2.2em;
  }
  .company-info__map-img iframe {
    aspect-ratio: 375/200;
  }
}
.news-archive {
  padding: 100px 0;
}
.news-archive__title {
  margin-bottom: 35px;
}
.news-archive__list {
  display: flex;
  flex-direction: column;
}
.news-archive__item {
  display: flex;
}
.news-archive__link {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
}
.news-archive__link:hover {
  opacity: 0.6;
}
.news-archive__thumbnail {
  width: 150px;
  aspect-ratio: 1/1;
  background: url(../img/pages/news/archive/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
}
.news-archive__contents {
  width: 900px;
}
.news-archive__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.news-archive__time {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.news-archive__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-archive__tag {
  color: var(--color_main);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.news-archive__headline {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-archive__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .news-archive {
    padding: 50px 0;
  }
  .news-archive__title {
    margin-bottom: 25px;
  }
  .news-archive__list {
    display: flex;
    flex-direction: column;
  }
  .news-archive__item {
    display: flex;
  }
  .news-archive__link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
  }
  .news-archive__thumbnail {
    width: 150px;
  }
  .news-archive__contents {
    width: 100%;
  }
  .news-archive__wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  .news-archive__time {
    font-size: 1.6rem;
  }
  .news-archive__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .news-archive__tag {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .news-archive__headline {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .news-archive__text {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.news-single {
  padding: 100px 0;
}
.news-single__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-single__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.news-single__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-single__tag {
  color: var(--color_main);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.news-single__time {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.news-single__body p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .news-single {
    padding: 50px 0;
  }
  .news-single__title {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .news-single__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .news-single__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .news-single__tag {
    font-size: 1.2rem;
  }
  .news-single__time {
    font-size: 1.4rem;
  }
  .news-single__body p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.column-archive {
  background: url(../img/pages/column/archive/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.column-archive__title {
  margin-bottom: 35px;
}
.column-archive__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 2%;
}
.column-archive__item {
  display: flex;
  width: 32%;
}
.column-archive__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.column-archive__link:hover {
  opacity: 0.6;
}
.column-archive__thumbnail {
  width: 100%;
  aspect-ratio: 400/285;
  background: url(../img/pages/top/column/no-img.jpg) no-repeat center/cover;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0px rgba(51, 51, 51, 0.15);
  margin-bottom: 20px;
}
.column-archive__time {
  color: #6CA224;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
.column-archive__headline {
  flex-grow: 1;
  color: #2D7727;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #6CA224;
  padding-bottom: 15px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  margin-bottom: 15px;
}
.column-archive__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.column-archive__tags {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.column-archive__tag {
  color: #6CA224;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #6CA224;
  padding: 5px 10px;
  border-radius: 90px;
}

@media only screen and (max-width: 767px) {
  .column-archive {
    padding: 50px 0;
  }
  .column-archive__title {
    align-items: center;
    margin-bottom: 25px;
  }
  .column-archive__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 3%;
  }
  .column-archive__item {
    display: flex;
    width: 48.5%;
  }
  .column-archive__link {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .column-archive__thumbnail {
    margin-bottom: 20px;
  }
  .column-archive__time {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .column-archive__headline {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .column-archive__text {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .column-archive__tags {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .column-archive__tag {
    font-size: 1.2rem;
  }
}
.column-single {
  background: url(../img/pages/column/single/leaf.png) no-repeat top 30px right/25%;
  padding: 100px 0;
}
.column-single__title {
  color: #2D7727;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #6CA224;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.column-single__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.column-single__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.column-single__tag {
  color: #6CA224;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  border: 1px solid #6CA224;
  padding: 5px 10px;
  border-radius: 90px;
}
.column-single__time {
  display: block;
  color: #6CA224;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.column-single__body p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .column-single {
    padding: 50px 0;
  }
  .column-single__title {
    font-size: 2rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .column-single__wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .column-single__tags {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .column-single__tag {
    font-size: 1.2rem;
  }
  .column-single__time {
    font-size: 1.4rem;
  }
  .column-single__body p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.contact-form__inner {
  padding: 80px 0;
}
.contact-form__title {
  margin-bottom: 50px;
}

.complete__inner {
  padding: 80px 0;
}
.complete__title {
  text-align: center;
  margin-bottom: 30px;
}
.complete__text {
  text-align: center;
}
.complete__link {
  display: block;
  text-align: center;
  margin-top: 10px;
}

.complete__title {
  align-items: center;
}

.privacy-policy__inner {
  padding: 80px 0;
}
.privacy-policy__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.privacy-contents__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.privacy-contents__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-contents__title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.privacy-contents__title i {
  font-size: 1rem;
  font-weight: 500;
}
.privacy-contents__title span {
  font-size: 2rem;
  font-weight: 500;
}
.privacy-contents__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .privacy-policy__inner {
    padding: 50px 0;
  }
  .privacy-policy__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .privacy-contents__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .privacy-contents__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .privacy-contents__title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .privacy-contents__title i {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .privacy-contents__title span {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .privacy-contents__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.site-map__inner {
  padding: 80px 0;
}
.site-map__title {
  font-size: 2.8rem;
  margin-bottom: 30px;
}
.site-map__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
.site-map__item a i {
  font-size: 1.4rem;
  font-weight: 500;
}
.site-map__item a span {
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .site-map__inner {
    padding: 50px 0;
  }
  .site-map__title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .site-map__item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }
  .site-map__item a i, .site-map__item a span {
    font-size: 1.5rem;
  }
}
.notfound__inner {
  padding: 80px 0;
}
.notfound__title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.notfound__text {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.notfound__text a {
  border-bottom: 1px solid #000000;
}

@media only screen and (max-width: 767px) {
  .notfound__inner {
    padding: 50px 0;
  }
  .notfound__title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .notfound__text {
    font-size: 1.5rem;
    text-align: center;
  }
  .notfound__text a {
    border-bottom: 1px solid #000000;
  }
}/*# sourceMappingURL=style.css.map */