@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* ----------

Setting - variables
各種変数

---------- */
/* ----------

Setting - layouts
レイアウト設定

---------- */
/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

* {
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.2em;
}

a {
  color: #b1a48b;
  transition: all 0.3s;
}
a:hover {
  color: #009be1;
}
a[href*=".pdf"]::before {
  margin-right: 0.5em;
  vertical-align: middle;
}

small {
  font-size: 0.8em;
}

label {
  vertical-align: middle;
}

tr:empty {
  display: none;
}

/* CSS Document */
/*
Whats: ヘッダー
How  : ヘッダー（navが子として入る）
Included in：app.scss
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #4d6381;
  z-index: 1000;
  text-align: center;
}
.header__inner {
  margin-inline: auto;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .header__inner {
    max-width: 1200px;
    min-width: auto;
  }
}
@media screen and (max-width: 800px) {
  .header__inner {
    width: 100%;
  }
}
.header__title, .header__right {
  flex: 1;
}
.header__title {
  display: block;
  line-height: 1;
  color: #1a1a1a;
  font-size: 25px;
  font-weight: 700;
}
.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__right > div:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #4d6381;
}
.header__right > div > ul {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.header__right-sns > ul > li > a > img {
  width: auto;
  height: 27px;
}
.header__right-menu > ul > li > a {
  line-height: 1;
}
.header__right-menu > ul > li > a > img {
  width: auto;
  height: 40px;
}
.header__right-menu > ul > li > a > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
}
.header__gnav-button {
  display: none;
}
@media screen and (min-width: 800px) {
  .header {
    height: 100px;
  }
  .header__inner {
    position: relative;
    padding: 30px 50px 0;
  }
}
@media screen and (max-width: 800px) {
  .header {
    width: 100vw;
    height: 84px;
  }
  .header__inner {
    padding: 15px;
  }
  .header__title {
    display: none;
    padding: 0 15px;
  }
  .header__title > a {
    line-height: 1;
    font-size: clamp(12px, 4.4vw, 24px);
    white-space: nowrap;
  }
  .header__gnav-button {
    display: block;
  }
}

/*
Whats: Main
How  : mainタグ（コンテンツボディ）
Included in：app.scss
*/
.main {
  margin-top: 168px;
  min-height: calc(100vh - 100px);
  padding-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .main {
    margin-top: 84px;
    padding-bottom: 30px;
  }
}

/*
Whats: フッター
How  : フッター（footer-navが子として入る）
Included in：app.scss
*/
.footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto; /* フッターの高さ */
  background-color: #E5F9E5;
  color: #1a1a1a;
  text-align: center;
  z-index: 1000;
}
.footer__inner {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
@media screen and (min-width: 800px) {
  .footer__inner {
    max-width: 1200px;
    min-width: auto;
  }
}
@media screen and (max-width: 800px) {
  .footer__inner {
    width: 100%;
  }
}
.footer__copyright {
  padding: 1em 0;
  text-align: center;
  color: #1a1a1a;
  font-size: 10px;
}
@media screen and (min-width: 800px) {
  .footer__address {
    display: inline-block;
  }
}
@media screen and (max-width: 800px) {
  .footer__inner {
    display: block;
    text-align: center;
    padding: 30px 15px;
  }
  .footer__inner > .footer__nav {
    grid-area: nav;
  }
  .footer__inner > .footer__address {
    grid-area: address;
  }
  .footer__inner > .footer__copyright {
    grid-area: copyright;
  }
  .footer__address {
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
  }
}

/*
Whats: フッターaddress内プロフィール
Included in：app.scss
*/
.footer-profile {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.footer-profile__name {
  font-size: 20px;
}
.footer-profile__address {
  margin-bottom: 20px;
  font-size: 15px;
}

/*
Whats: section
How  : sectionタグ
Included in：app.scss
*/
.section {
  margin-bottom: 60px;
}
.section__inner {
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .section__inner {
    max-width: 1200px;
    min-width: auto;
  }
}
@media screen and (max-width: 800px) {
  .section__inner {
    width: 100%;
  }
}
.section.--bg_primary {
  background-color: #4d6381;
}
.section.--bg_primary * {
  color: #fff;
}
.section.--bg_secondary {
  background-color: #f4ece0;
}
.section.--bg_gray {
  background-color: #d1cdc5;
}
.section.--bg_palegray {
  background-color: #edebe8;
}
.section.--bg_white {
  background-color: #fff;
}
.section.--bg_green {
  background-color: #E5F9E5;
}
.section p {
  line-height: 2em;
  margin-bottom: 1em;
}

/*
Whats: box
How?:  汎用paddingを持つ箱
Included in：app.scss
*/
@media screen and (min-width: 800px) {
  .box {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 800px) {
  .box {
    padding: 45px 15px 30px;
  }
}

/*
Whats: title
How?:  各種タイトル
Included in：app.scss
*/
.title-h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  color: #1a1a1a;
  font-weight: 700;
}
.title-h2 > span {
  display: block;
  margin-bottom: 18px;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #4d6381;
}
.title-h3 {
  color: #4d6381;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}
.title-h4 {
  color: #009be1;
  margin-bottom: 30px;
  font-size: 22px;
  text-align: center;
  line-height: 1;
}
.title-h4 > span {
  font-size: 12px;
  color: #1a1a1a;
}
.title-flag {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 22px;
  color: #4d6381;
}
.title-flag:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 34px;
  margin-right: 10px;
  background: url("../../img/common/icon_title-flag.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px auto;
}
@media screen and (max-width: 800px) {
  .title-h2 {
    font-size: clamp(12px, 2.2vw, 14px);
  }
  .title-h2 > span {
    white-space: nowrap;
    font-size: clamp(20px, 12vw, 40px);
  }
  .title-h3 {
    font-size: clamp(12px, 5.2vw, 18px);
  }
}

/*
Whats: table
How?:  テーブル

・spではth、tdが改行になるように処理

Included in：app.scss
*/
.table {
  width: 100%;
  border-top: 1px solid #999;
}
.table > tbody > tr {
  border-bottom: 1px solid #999;
}
.table > tbody > tr > th, .table > tbody > tr > td {
  vertical-align: middle;
  font-weight: 600;
}
.table > tbody > tr > th {
  max-width: 200px;
  margin-right: 30px;
  padding: 20px 40px 20px 20px;
  text-align: justify;
  font-size: 20px;
  letter-spacing: 0;
  color: #4d6381;
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: auto 15px;
}
.table > tbody > tr > td {
  padding: 20px 0;
  font-size: 19px;
}
.table.--bg_white {
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .table > tbody {
    display: contents;
  }
  .table > tbody > tr {
    display: block;
    border-bottom: none;
  }
  .table > tbody > tr:first-child {
    margin-top: 15px;
  }
  .table > tbody > tr > th, .table > tbody > tr > td {
    display: block;
    padding: 0;
    padding-left: 14px;
  }
  .table > tbody > tr > th {
    margin-bottom: 7.5px;
    font-size: 16px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 15px;
  }
  .table > tbody > tr > td {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #999;
  }
}

@media screen and (min-width: 800px) {
  .company-concept {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 800px) {
  .company-concept {
    padding: 45px 15px 30px;
  }
}
.company-concept P {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .company-concept p {
    font-size: 13px;
    text-align: justify;
  }
}

.company-about {
  background-color: #fff;
  padding: 30px;
}
@media screen and (min-width: 800px) {
  .company-about .table {
    max-width: 800px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 800px) {
  .company-about {
    padding: 15px;
  }
}

.u-ma0 {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

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

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-my0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-mx0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.u-pa0 {
  padding: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-py0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-px0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.u-mas {
  margin: 10px !important;
}

.u-mts {
  margin-top: 10px !important;
}

.u-mrs {
  margin-right: 10px !important;
}

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

.u-mls {
  margin-left: 10px !important;
}

.u-mys {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.u-mxs {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.u-pas {
  padding: 10px !important;
}

.u-pts {
  padding-top: 10px !important;
}

.u-prs {
  padding-right: 10px !important;
}

.u-pbs {
  padding-bottom: 10px !important;
}

.u-pls {
  padding-left: 10px !important;
}

.u-pys {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.u-pxs {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.u-mam {
  margin: 20px !important;
}

.u-mtm {
  margin-top: 20px !important;
}

.u-mrm {
  margin-right: 20px !important;
}

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

.u-mlm {
  margin-left: 20px !important;
}

.u-mym {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.u-mxm {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.u-pam {
  padding: 20px !important;
}

.u-ptm {
  padding-top: 20px !important;
}

.u-prm {
  padding-right: 20px !important;
}

.u-pbm {
  padding-bottom: 20px !important;
}

.u-plm {
  padding-left: 20px !important;
}

.u-pym {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.u-pxm {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.u-mal {
  margin: 40px !important;
}

.u-mtl {
  margin-top: 40px !important;
}

.u-mrl {
  margin-right: 40px !important;
}

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

.u-mll {
  margin-left: 40px !important;
}

.u-myl {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-mxl {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.u-pal {
  padding: 40px !important;
}

.u-ptl {
  padding-top: 40px !important;
}

.u-prl {
  padding-right: 40px !important;
}

.u-pbl {
  padding-bottom: 40px !important;
}

.u-pll {
  padding-left: 40px !important;
}

.u-pyl {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-pxl {
  padding-right: 40px !important;
  padding-left: 40px !important;
}

.u-mall {
  margin: 60px !important;
}

.u-mtll {
  margin-top: 60px !important;
}

.u-mrll {
  margin-right: 60px !important;
}

.u-mbll {
  margin-bottom: 60px !important;
}

.u-mlll {
  margin-left: 60px !important;
}

.u-myll {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.u-mxll {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.u-pall {
  padding: 60px !important;
}

.u-ptll {
  padding-top: 60px !important;
}

.u-prll {
  padding-right: 60px !important;
}

.u-pbll {
  padding-bottom: 60px !important;
}

.u-plll {
  padding-left: 60px !important;
}

.u-pyll {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.u-pxll {
  padding-right: 60px !important;
  padding-left: 60px !important;
}

.u-tl {
  text-align: left !important;
}

.u-tc {
  text-align: center !important;
}

.u-tr {
  text-align: right !important;
}

.u-flex {
  flex: 1 !important;
}

.u-fss {
  font-size: 13px !important;
}
@media screen and (max-width: 800px) {
  .u-fss {
    font-size: 3.2vw !important;
  }
}

.u-fsm {
  font-size: 16px !important;
}
@media screen and (max-width: 800px) {
  .u-fsm {
    font-size: 3.8vw !important;
  }
}

.u-fsl {
  font-size: 18px !important;
}
@media screen and (max-width: 800px) {
  .u-fsl {
    font-size: 4.4vw !important;
  }
}

.u-fsll {
  font-size: 22px !important;
}
@media screen and (max-width: 800px) {
  .u-fsll {
    font-size: 5vw !important;
  }
}

.u-fwb {
  font-weight: 600;
}

.u-fc-red {
  color: #a00;
}

.u-nowrap {
  white-space: nowrap;
}

.u-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 800px) {
  .u-noSP {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .u-noPC {
    display: none;
  }
}

#payjp_checkout_box input[type=button] {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

/*# sourceMappingURL=style.css.map */
