/*!*****************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!../src/scss/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ブレイクポイントの設定 ====================================================================================================
$pcは「min-width」、$tb及び$spは「max-width」で使用することを前提に設定する。
※上記基準のため、$tbの値は「$pc-1px」の値になる。
・PC：指定サイズ〜
・タブレット：〜指定サイズ
・スマホ：〜指定サイズ
*/
/* 変数格納 ================================================================================================================
・よく使用する、一括で変更する可能性がある値を指定する。
・変数名は値の関連性がはっきりとわかるものとする。また、単語の区切りが必要な場合は「-（ハイフン）」で区切る。
例）誤 $main:white; / 誤 $maincolor:white; / 正 $main-color:white;
*/
/* CSSリセット ================================================================================================================
各ブラウザに付随するデフォルトスタイルを相殺するための設定。
特定の要素に対して、制作上指定があった方が良い場合にもこちらで指定を行う。
*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

svg {
  display: block;
  width: auto;
  height: auto;
}

img {
  display: block;
}

a {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

/* mixinの設定 ==================================================================================================================
よく使用されるスタイルをコンポーネント化するための設定。
同一レイアウトを複数箇所、複数ページで使用する場合はこちらで作成し、編集を一括で行えるようにする。
ネーミングについては基本英単語で行い、省略はアルファベット6字以上日本語3字以上の場合のみとする。
省略ネーミングの場合は、日本語の各字子音を使用する。
例）button → btn
*/
/* タグ側のレスポンシブ指定 ===========================================
ブラウザやデバイス、ブレイクポイントに対して強制的な指定が必要な場合はここに設定を追加する。
基本的に使用しないことを前提に、やむを得ない場合に追記及び使用する。
*/
@media (min-width: 1200px) {
  .pc {
    display: block;
  }
}
@media (max-width: 1199px) {
  .pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media (min-width: 1200px) {
  .tb {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tb {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb {
    display: none;
  }
}

@media (min-width: 1200px) {
  .pctb {
    display: block;
  }
}
@media (max-width: 1199px) {
  .pctb {
    display: block;
  }
}
@media (max-width: 768px) {
  .pctb {
    display: none;
  }
}

@media (min-width: 1200px) {
  .sp {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* コンテンツ部設定 =============================================================================================================
headerやfooter、お問い合わせ導線項目などの全体を通して共通になるセクションはここに記載する。
※1つの項目としてレイアウトが完成し、コンポーネント化されているもの以外はこちらに記載しない。（リストの形式などはmixinで設定）
*/
body {
  width: 100%;
  position: relative;
}
body.under {
  background: #F2F2F2;
}
body.under .background {
  display: none;
}
body .background {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
@media (max-width: 768px) {
  body .background {
    height: 80vh;
  }
}
body .background:before {
  content: "";
  width: 100%;
  height: 33.3333333333%;
  background: #F9E539;
  position: absolute;
  top: 0;
}
body .background:after {
  content: "";
  width: 100%;
  height: 66.6666666667%;
  background: #F49F22;
  position: absolute;
  bottom: 0;
}
body .background.under-background {
  background: #F2F2F2;
}
body .background.under-background:before, body .background.under-background:after {
  display: none;
}

#under-kv {
  width: 100%;
  height: 420px;
  position: relative;
}
@media (max-width: 768px) {
  #under-kv {
    height: auto;
    aspect-ratio: 16/9;
  }
}
#under-kv:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/5;
  background: url(../img/common/cloud_under_kv.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
}
#under-kv .kv-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  padding: 20px 20px 0 20px;
  position: fixed;
  z-index: -1;
}
#under-kv .kv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

header {
  width: 100%;
  position: fixed;
  z-index: 9999 !important;
}
header .wrap {
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
header .wrap .logo {
  display: block;
  width: fit-content;
  height: fit-content;
  position: relative;
  top: 30px;
  bottom: auto;
  left: 30px;
}
header .wrap .logo img {
  width: auto;
  height: 90px;
}
@media (max-width: 768px) {
  header .wrap .logo img {
    height: 70px;
  }
}
@media (max-width: 768px) {
  header .wrap .menu-tgl img {
    width: 120px;
    height: auto;
    aspect-ratio: 1/1;
  }
}
header .wrap .menu-tgl.active .open {
  display: none;
}
header .wrap .menu-tgl.active .close {
  display: block;
}
header .wrap .menu-tgl .close {
  display: none;
}
header .modal {
  display: none;
}
header .modal .modal-content {
  width: 100%;
  height: 100vh;
  background: #D2D027;
  position: absolute;
  top: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .modal .modal-content .modal-content-swiper {
  width: 50%;
  height: 100vh;
}
header .modal .modal-content .modal-content-swiper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
@media (max-width: 768px) {
  header .modal .modal-content .modal-content-swiper {
    display: none;
  }
}
header .modal .modal-content nav {
  width: 50%;
  height: fit-content;
}
@media (max-width: 768px) {
  header .modal .modal-content nav {
    width: 100%;
  }
}
header .modal .modal-content nav ul {
  width: 70%;
  height: fit-content;
  margin: 0px auto;
}
header .modal .modal-content nav ul li {
  padding: 36px 0;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  position: relative;
}
header .modal .modal-content nav ul li:hover {
  opacity: 0.5;
}
header .modal .modal-content nav ul li:before {
  content: "";
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
header .modal .modal-content nav ul li:first-of-type {
  padding-top: 0;
}
header .modal .modal-content nav ul li a {
  font-size: 26px;
  font-weight: bold;
  color: #FFFFFF;
}

footer {
  background: white;
  position: relative;
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/15;
  background: url(../img/common/cloud_white.svg), #D2D027;
  background-repeat: no-repeat;
  background-size: cover;
}
footer.under:before {
  background: url(../img/common/cloud_white.svg), #F2F2F2;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .wrap {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  footer .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
footer .wrap {
  padding-bottom: 75px;
}
@media (max-width: 768px) {
  footer .wrap {
    padding-bottom: 50px;
  }
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .wrap {
    padding-top: 100px;
    flex-direction: column;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  footer .wrap {
    padding-top: 66.6666666667px;
  }
}
footer .wrap .left .logo {
  width: 320px;
  height: auto;
}
@media (max-width: 1199px) {
  footer .wrap .left .logo {
    width: 280px;
  }
}
footer .wrap .left .text {
  width: fit-content;
  font-size: 20px;
  font-weight: 400;
  color: #514D4D;
  line-height: 28px;
  margin: 0px auto;
  margin-top: 30px;
}
@media (max-width: 768px) {
  footer .wrap .right {
    margin-top: 50px;
  }
}
footer .wrap .right .btn {
  width: auto;
  height: 100px;
  border: 4px solid orange;
  border-radius: 200px;
  margin: 0px auto;
  padding: 0 50px;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  footer .wrap .right .btn {
    height: 90px;
  }
}
footer .wrap .right .btn:hover {
  opacity: 0.5;
}
@media (max-width: 1199px) {
  footer .wrap .right .btn img {
    width: 250px;
  }
}
footer .wrap .right .btn .point {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #F49F22;
  text-align: right;
  margin-top: 6px;
}
footer .cw {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 15px;
  color: #514D4D;
}

#kv {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #kv {
    height: 80vh;
  }
}
#kv .kv-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  position: fixed;
  z-index: -1 !important;
}
#kv .kv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
#kv .nav-wrap {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}
#kv .nav-wrap .cloud {
  width: 100%;
}
#kv .nav-wrap .logo {
  width: 30vw;
  position: absolute;
  top: 2vw;
  right: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 768px) {
  #kv .nav-wrap .logo {
    top: auto;
    bottom: 50px;
    width: 65%;
  }
}
#kv .nav-wrap .cc {
  width: 30vw;
  height: auto;
  position: absolute;
  top: -5vw;
  right: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 768px) {
  #kv .nav-wrap .cc {
    top: auto;
    bottom: 45vw;
    width: 65%;
  }
}

#message {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  padding-top: 100px;
}
@media (max-width: 768px) {
  #message {
    padding-top: 66.6666666667px;
  }
}
#message {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #message {
    padding-bottom: 66.6666666667px;
  }
}
#message {
  position: relative;
}
@media (max-width: 768px) {
  #message {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #message {
    padding-top: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #message {
    padding-bottom: 100px;
  }
}
#message:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/message_kazari.svg) center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: o;
  margin: auto;
  z-index: 0;
}
@media (max-width: 768px) {
  #message:before {
    background-size: 90%;
  }
}
#message img {
  display: block;
  margin: 0px auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #message img {
    width: 80%;
  }
}
#message p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
#message p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#message p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#message p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #message p {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }
  #message p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 2) * 0.5em);
    content: "";
  }
  #message p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 2) * 0.5em);
    content: "";
  }
  #message p {
    width: 90%;
  }
}

#top-1 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #top-1 {
    padding-top: 100px;
  }
}
#top-1 {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  #top-1 {
    padding-bottom: 100px;
  }
}
#top-1 {
  background: white;
}
#top-1 .title {
  position: relative;
  z-index: 1;
}
#top-1 .title h2 {
  display: block;
  width: 100%;
}
#top-1 .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #top-1 .title h2 img {
    width: auto;
    height: 40px;
  }
}
#top-1 .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#top-1 .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#top-1 .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#top-1 .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #top-1 .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #top-1 .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #top-1 .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #top-1 .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#top-1 .wrap {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #top-1 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#top-1 .wrap .main-content .content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content {
    margin-top: 66.6666666667px;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content {
    flex-direction: column;
  }
}
#top-1 .wrap .main-content .content:nth-of-type(even) .text {
  order: 2;
}
#top-1 .wrap .main-content .content .text {
  width: 465px;
  height: auto;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  #top-1 .wrap .main-content .content .text {
    width: 45%;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content .text {
    width: 100%;
    margin-top: 0px;
  }
}
#top-1 .wrap .main-content .content .text .content-title {
  width: auto;
}
@media (max-width: 1199px) {
  #top-1 .wrap .main-content .content .text .content-title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content .text .content-title {
    display: block;
    width: auto;
    height: 40px;
  }
}
#top-1 .wrap .main-content .content .text picture {
  display: none;
}
#top-1 .wrap .main-content .content .text picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content .text picture {
    display: block;
  }
}
#top-1 .wrap .main-content .content .text p {
  font-size: 17px;
  font-weight: 400;
  line-height: 2.1;
}
#top-1 .wrap .main-content .content .text p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2.1) * 0.5em);
  content: "";
}
#top-1 .wrap .main-content .content .text p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2.1) * 0.5em);
  content: "";
}
#top-1 .wrap .main-content .content .text p {
  color: #514D4D;
  margin-top: 30px;
  padding-left: 5px;
}
#top-1 .wrap .main-content .content .content-img {
  width: 662px;
  height: auto;
  aspect-ratio: 10/7 !important;
  border-radius: 180px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  #top-1 .wrap .main-content .content .content-img {
    width: 45%;
    height: 20%;
    flex-shrink: 0 !important;
    border-radius: 120px;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap .main-content .content .content-img {
    display: none;
  }
}
#top-1 .wrap .other-content {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #top-1 .wrap .other-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#top-1 .wrap .other-content {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #top-1 .wrap .other-content {
    margin-top: 66.6666666667px;
  }
}
#top-1 .wrap .other-content .content {
  width: 300px;
}
#top-1 .wrap .other-content .content img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 65px;
  object-fit: cover;
}
#top-1 .wrap .other-content .content .title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  margin-top: 18px;
}
#top-1 .wrap .other-content .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
#top-1 .wrap .other-content .content p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#top-1 .wrap .other-content .content p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#top-1 .wrap .other-content .content p {
  text-align: center;
  color: #514D4D;
  margin-top: 16px;
}
#top-1 .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#top-1 .btn:hover {
  opacity: 0.5;
}
#top-1 .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #top-1 .btn {
    margin-top: 50px;
  }
}

#top-2 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #top-2 {
    padding-top: 100px;
  }
}
#top-2 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #top-2 {
    padding-bottom: 33.3333333333px;
  }
}
#top-2 {
  background: #F9F9F9;
}
@media (max-width: 768px) {
  #top-2 {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #top-2 {
    padding-bottom: 66.6666666667px;
  }
}
#top-2 .title {
  position: relative;
  z-index: 1;
}
#top-2 .title h2 {
  display: block;
  width: 100%;
}
#top-2 .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #top-2 .title h2 img {
    width: auto;
    height: 40px;
  }
}
#top-2 .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#top-2 .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#top-2 .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#top-2 .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #top-2 .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #top-2 .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #top-2 .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #top-2 .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#top-2 .wrap {
  max-width: 680px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #top-2 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#top-2 .wrap {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #top-2 .wrap {
    margin-top: 50px;
  }
}
#top-2 .wrap article ul li {
  padding: 30px 0;
  position: relative;
}
#top-2 .wrap article ul li:before {
  content: "";
  width: 100%;
  height: 3px;
  background: #F49F22;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#top-2 .wrap article ul li.cat-news:before {
  background: #F49F22;
}
#top-2 .wrap article ul li.cat-news .date-cat .cat:before {
  color: #F49F22;
}
#top-2 .wrap article ul li.cat-event:before {
  background: #F9E539;
}
#top-2 .wrap article ul li.cat-event .date-cat .cat:before {
  color: #F9E539;
}
#top-2 .wrap article ul li.cat-niconico:before {
  background: #D2D027;
}
#top-2 .wrap article ul li.cat-niconico .date-cat .cat:before {
  color: #D2D027;
}
#top-2 .wrap article ul li .date-cat {
  display: flex;
  gap: 0 30px;
}
#top-2 .wrap article ul li .date-cat .date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #514D4D;
}
#top-2 .wrap article ul li .date-cat .cat {
  display: block;
  font-size: 13px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
}
#top-2 .wrap article ul li .date-cat .cat:before {
  content: "⚫︎";
}
#top-2 .wrap article ul li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #514D4D;
  letter-spacing: 0.05em;
  margin-top: 13px;
}
#top-2 .wrap .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#top-2 .wrap .btn:hover {
  opacity: 0.5;
}
#top-2 .wrap .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #top-2 .wrap .btn {
    margin-top: 50px;
  }
}

#top-3 {
  position: relative;
  overflow: hidden;
}
#top-3:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/15;
  background: url(../img/common/cloud_green.svg), #F9F9F9;
  background-repeat: no-repeat;
  background-size: cover;
}
#top-3 .top-3-inner {
  overflow: hidden;
  padding-top: 100px;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner {
    padding-top: 66.6666666667px;
  }
}
#top-3 .top-3-inner {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner {
    padding-bottom: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #top-3 .top-3-inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #top-3 .top-3-inner {
    padding-bottom: 66.6666666667px;
  }
}
#top-3 .top-3-inner {
  background: #D2D027;
}
#top-3 .top-3-inner .title {
  position: relative;
  z-index: 1;
}
#top-3 .top-3-inner .title h2 {
  display: block;
  width: 100%;
}
#top-3 .top-3-inner .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .title h2 img {
    width: auto;
    height: 40px;
  }
}
#top-3 .top-3-inner .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#top-3 .top-3-inner .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#top-3 .top-3-inner .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#top-3 .top-3-inner .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #top-3 .top-3-inner .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #top-3 .top-3-inner .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#top-3 .top-3-inner .insta-swiper {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .insta-swiper {
    margin-top: 50px;
  }
}
#top-3 .top-3-inner .insta-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
#top-3 .top-3-inner .insta-swiper {
  /* 画像のサイズ調整 */
}
#top-3 .top-3-inner .insta-swiper .swiper-slide {
  width: auto !important;
  height: 300px !important;
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .insta-swiper .swiper-slide {
    height: 180px !important;
  }
}
#top-3 .top-3-inner .insta-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top-3 .top-3-inner .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#top-3 .top-3-inner .btn:hover {
  opacity: 0.5;
}
#top-3 .top-3-inner .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #top-3 .top-3-inner .btn {
    margin-top: 50px;
  }
}

#about .rellax {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  opacity: 0.2;
  position: absolute;
  top: 200vh;
  z-index: 3;
}
#about .rellax img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#about .two-column {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #about .two-column {
    padding-top: 100px;
  }
}
#about .two-column {
  position: relative;
  background: white;
  overflow: clip;
}
#about .two-column .two-column-inner {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#about .two-column .two-column-inner {
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner {
    gap: 0 50px;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner {
    flex-direction: column;
  }
}
#about .two-column .two-column-inner .left {
  min-width: 200px;
  height: fit-content;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .left {
    padding-bottom: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .left {
  position: sticky;
  top: 150px;
  z-index: 100;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner .left {
    display: none;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .left {
    top: 0;
    padding: 20px;
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    display: none;
  }
}
#about .two-column .two-column-inner .left a {
  font-size: 18px;
  font-weight: 480;
  letter-spacing: 2px;
  display: block;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#about .two-column .two-column-inner .left a:hover {
  opacity: 0.5;
}
#about .two-column .two-column-inner .left a:nth-of-type(n + 2) {
  margin-top: 36px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .left a:nth-of-type(n + 2) {
    margin-top: 0;
  }
}
#about .two-column .two-column-inner .left a:before {
  content: "⚫︎";
}
#about .two-column .two-column-inner .left ul:not(:first-of-type) {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#about .two-column .two-column-inner .left ul li:not(:first-of-type) {
  margin-top: 35px;
}
#about .two-column .two-column-inner .right {
  width: 820px;
  flex-shrink: 1;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner .right {
    width: 100%;
  }
}
#about .two-column .two-column-inner .right section .title {
  position: relative;
  z-index: 1;
}
#about .two-column .two-column-inner .right section .title h2 {
  display: block;
  width: 100%;
}
#about .two-column .two-column-inner .right section .title h2 img {
  margin: 0 auto 0 0;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title h2 img {
    width: auto;
    height: 40px;
  }
}
#about .two-column .two-column-inner .right section .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#about .two-column .two-column-inner .right section .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #about .two-column .two-column-inner .right section .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title {
    position: relative;
    z-index: 1;
  }
  #about .two-column .two-column-inner .right section .title h2 {
    display: block;
    width: 100%;
  }
  #about .two-column .two-column-inner .right section .title h2 img {
    margin: 0px auto;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title h2 img {
    width: auto;
    height: 40px;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title p {
    font-size: 18px;
    font-weight: 450;
    line-height: 2;
  }
  #about .two-column .two-column-inner .right section .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 2) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 2) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section .title p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #514D4D;
    text-align: center;
    margin: 0px auto;
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #about .two-column .two-column-inner .right section .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#about .two-column .two-column-inner .right section#about-1 .wrap {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-1 .wrap {
    padding-bottom: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-1 .wrap {
  position: relative;
}
#about .two-column .two-column-inner .right section#about-1 .wrap p {
  width: 460px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
#about .two-column .two-column-inner .right section#about-1 .wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-1 .wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-1 .wrap p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  letter-spacing: 0.05em;
  margin-top: 30px;
  filter: drop-shadow(1.8px 1.8px 0px #ffffff);
  position: relative;
  z-index: 2;
}
#about .two-column .two-column-inner .right section#about-1 .wrap img {
  width: 700px;
  height: 480px;
  border-top-left-radius: 120px;
  object-fit: cover;
  position: absolute;
  top: auto;
  right: -30vw;
  bottom: 0;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-1 .wrap img {
    width: 300px;
    height: 200px;
    right: -10vw;
    border-top-left-radius: 50px;
    opacity: 0.5;
  }
}
#about .two-column .two-column-inner .right section#about-2 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 {
    padding-top: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-2 {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 {
    padding-bottom: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-2 {
  position: relative;
}
#about .two-column .two-column-inner .right section#about-2:before {
  content: "";
  width: 500%;
  height: 100%;
  background: #F9F9F9;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
}
#about .two-column .two-column-inner .right section#about-2 .wrap {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap {
    margin-top: 50px;
  }
}
#about .two-column .two-column-inner .right section#about-2 .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content {
  width: 380px;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content {
    width: 48%;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content {
    width: 100%;
  }
  #about .two-column .two-column-inner .right section#about-2 .wrap .content:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content:not(:first-of-type) {
    margin-top: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content:nth-of-type(2n) {
  padding-top: 75px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content:nth-of-type(2n) {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content:nth-of-type(2n) {
    padding-top: 0px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-2 .wrap .content:nth-of-type(2n) {
    padding-top: 0px;
  }
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2.8;
  border-radius: 40px;
  object-fit: cover;
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #514D4D;
  padding-left: 5px;
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-2 .wrap .content p {
  color: #514D4D;
  margin-top: 20px;
  padding-left: 5px;
}
#about .two-column .two-column-inner .right section#about-3 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 {
    padding-top: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-3 {
  position: relative;
}
#about .two-column .two-column-inner .right section#about-3 .wrap {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap {
    margin-top: 50px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline {
  width: 100%;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li {
  width: 100%;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li {
    padding-bottom: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
  position: relative;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li {
    flex-direction: column;
    gap: 30px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li:last-of-type {
  padding-bottom: 0px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li:last-of-type {
    padding-bottom: 0px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li:last-of-type:before {
  content: "";
  display: none;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 18px;
  background: #F9E539;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text {
  width: 100%;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .time {
  display: flex;
  align-items: center;
  gap: 10px;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .time span {
  font-size: 32px;
  font-weight: 600;
  display: block;
  color: #514D4D;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .time span {
    font-size: 24px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .time .icon {
  width: 40px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #F9E539;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .time .icon {
    width: 32px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .outline {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .outline:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .outline:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .outline {
  color: #514D4D;
  margin-top: 20px;
  padding-left: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .timeline-text .outline {
    padding-left: 42px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img {
  width: fit-content;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img {
    margin-left: 42px;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img img {
  width: 300px;
  height: auto;
  aspect-ratio: 2.6/1.5;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img img {
    width: 100%;
  }
}
#about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img img:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-3 .wrap .timeline li .img img:not(:first-of-type) {
    display: none;
  }
}
#about .two-column .two-column-inner .right section#about-4 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 {
    padding-top: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-4 {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 {
    padding-bottom: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-4 {
  position: relative;
}
#about .two-column .two-column-inner .right section#about-4 .wrap {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 .wrap {
    margin-top: 50px;
  }
}
#about .two-column .two-column-inner .right section#about-4 .wrap {
  position: relative;
  z-index: 1;
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner .right section#about-4 .wrap .month {
    justify-content: center;
  }
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right {
  width: 340px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left,
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right {
    width: 30%;
  }
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left.month-left,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right.month-left {
  text-align: right;
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left.month-right,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right.month-right {
  text-align: left;
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p:before,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p:after,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p,
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p {
  color: #514D4D;
  margin-top: 18px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p,
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
  }
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p:before,
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.6) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p:after,
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.6) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-left p,
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-right p {
    position: relative;
    top: -6px;
  }
}
#about .two-column .two-column-inner .right section#about-4 .wrap .month .month-center {
  width: fit-content;
  margin-right: 20px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-4 .wrap .month .month-center {
    width: 70px;
  }
}
#about .two-column .two-column-inner .right section#about-5 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 {
    padding-top: 100px;
  }
}
#about .two-column .two-column-inner .right section#about-5 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 {
    padding-bottom: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-5 {
  position: relative;
}
#about .two-column .two-column-inner .right section#about-5 .title h2 span {
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .title h2 span {
    text-align: center;
  }
}
#about .two-column .two-column-inner .right section#about-5 .title p {
  text-align: left !important;
}
#about .two-column .two-column-inner .right section#about-5:before {
  content: "";
  width: 500%;
  height: 100%;
  background: #F9F9F9;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 0;
}
#about .two-column .two-column-inner .right section#about-5 .wrap {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap {
    margin-top: 50px;
  }
}
#about .two-column .two-column-inner .right section#about-5 .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content {
  width: 380px;
}
@media (max-width: 1199px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content {
    width: 48%;
  }
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content:nth-of-type(n + 3) {
  padding-top: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content:nth-of-type(n + 3) {
    padding-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content:nth-of-type(n + 3) {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content:not(first-of-type) {
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content:not(first-of-type) {
    margin-top: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2.8;
  border-radius: 40px;
  object-fit: cover;
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #514D4D;
  padding-left: 5px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content h3 {
    font-size: 20px;
  }
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-5 .wrap .content p {
  color: #514D4D;
  margin-top: 20px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .wrap .content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  #about .two-column .two-column-inner .right section#about-5 .wrap .content p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.6) * 0.5em);
    content: "";
  }
  #about .two-column .two-column-inner .right section#about-5 .wrap .content p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.6) * 0.5em);
    content: "";
  }
}
#about .two-column .two-column-inner .right section#about-5 .point {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
#about .two-column .two-column-inner .right section#about-5 .point:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-5 .point:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about .two-column .two-column-inner .right section#about-5 .point {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .point {
    margin-top: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-5 .point {
  position: relative;
  z-index: 1;
}
#about .two-column .two-column-inner .right section#about-5 .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#about .two-column .two-column-inner .right section#about-5 .btn:hover {
  opacity: 0.5;
}
#about .two-column .two-column-inner .right section#about-5 .btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about .two-column .two-column-inner .right section#about-5 .btn {
    margin-top: 33.3333333333px;
  }
}
#about .two-column .two-column-inner .right section#about-5 .btn {
  margin-right: auto;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
#about .two-column .two-column-inner .right section#about-5 .btn + .btn {
  margin-top: 20px;
}

#about-6 {
  position: relative;
  border-radius: 0;
  background: #D2D027;
}
#about-6:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/15;
  background: url(../img/common/cloud_green.svg), #F9F9F9;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
#about-6 .about-6-inner {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner {
    padding-top: 66.6666666667px;
  }
}
#about-6 .about-6-inner {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner {
    padding-bottom: 33.3333333333px;
  }
}
#about-6 .about-6-inner {
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #about-6 .about-6-inner {
    padding-bottom: 66.6666666667px;
  }
}
#about-6 .about-6-inner .title {
  position: relative;
  z-index: 1;
}
#about-6 .about-6-inner .title h2 {
  display: block;
  width: 100%;
}
#about-6 .about-6-inner .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .title h2 img {
    width: auto;
    height: 40px;
  }
}
#about-6 .about-6-inner .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#about-6 .about-6-inner .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about-6 .about-6-inner .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about-6 .about-6-inner .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #about-6 .about-6-inner .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #about-6 .about-6-inner .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#about-6 .about-6-inner .wrap {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #about-6 .about-6-inner .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#about-6 .about-6-inner .wrap {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .wrap {
    margin-top: 33.3333333333px;
  }
}
#about-6 .about-6-inner .wrap .img {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .wrap .img {
    flex-direction: column;
    gap: 25px 0;
  }
}
#about-6 .about-6-inner .wrap .img img {
  max-width: 480px;
  height: auto;
  aspect-ratio: 4.8/3.1;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  #about-6 .about-6-inner .wrap .img img {
    width: 48%;
  }
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .wrap .img img {
    width: 100%;
  }
}
#about-6 .about-6-inner .wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#about-6 .about-6-inner .wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#about-6 .about-6-inner .wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#about-6 .about-6-inner .wrap p {
  text-align: center;
  color: white;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .wrap p {
    margin-top: 33.3333333333px;
  }
}
#about-6 .about-6-inner .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#about-6 .about-6-inner .btn:hover {
  opacity: 0.5;
}
#about-6 .about-6-inner .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #about-6 .about-6-inner .btn {
    margin-top: 50px;
  }
}

#news .two-column {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #news .two-column {
    padding-top: 100px;
  }
}
#news .two-column {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #news .two-column {
    padding-bottom: 33.3333333333px;
  }
}
#news .two-column {
  position: relative;
  background: white;
}
#news .two-column .two-column-inner {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #news .two-column .two-column-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#news .two-column .two-column-inner {
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  #news .two-column .two-column-inner {
    gap: 0 50px;
  }
}
@media (max-width: 768px) {
  #news .two-column .two-column-inner {
    flex-direction: column;
  }
}
#news .two-column .two-column-inner .left {
  min-width: 200px;
  height: fit-content;
  position: sticky;
  top: 150px;
  z-index: 10;
}
@media (max-width: 768px) {
  #news .two-column .two-column-inner .left {
    top: 0;
    padding: 20px;
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    display: none;
  }
}
#news .two-column .two-column-inner .left a {
  font-size: 18px;
  font-weight: 480;
  letter-spacing: 2px;
  display: block;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#news .two-column .two-column-inner .left a:hover {
  opacity: 0.5;
}
#news .two-column .two-column-inner .left a:nth-of-type(n+2) {
  margin-top: 36px;
}
@media (max-width: 768px) {
  #news .two-column .two-column-inner .left a:nth-of-type(n+2) {
    margin-top: 0;
  }
}
#news .two-column .two-column-inner .left a:before {
  content: "⚫︎";
}
#news .two-column .two-column-inner .left ul:not(:first-of-type) {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#news .two-column .two-column-inner .left ul li:not(:first-of-type) {
  margin-top: 35px;
}
#news .two-column .two-column-inner .right {
  width: 820px;
}
@media (max-width: 768px) {
  #news .two-column .two-column-inner .right {
    width: 100%;
  }
}
#news .two-column .two-column-inner .right #news-1 article ul li {
  padding: 30px 0;
  position: relative;
}
#news .two-column .two-column-inner .right #news-1 article ul li:first-of-type {
  padding-top: 0;
}
#news .two-column .two-column-inner .right #news-1 article ul li:before {
  content: "";
  width: 100%;
  height: 3px;
  background: #F49F22;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-news:before {
  background: #F49F22;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-news .date-cat .cat:before {
  color: #F49F22;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-event:before {
  background: #F9E539;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-event .date-cat .cat:before {
  color: #F9E539;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-niconico:before {
  background: #D2D027;
}
#news .two-column .two-column-inner .right #news-1 article ul li.cat-niconico .date-cat .cat:before {
  color: #D2D027;
}
#news .two-column .two-column-inner .right #news-1 article ul li .date-cat {
  display: flex;
  gap: 0 30px;
}
#news .two-column .two-column-inner .right #news-1 article ul li .date-cat .date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #514D4D;
}
#news .two-column .two-column-inner .right #news-1 article ul li .date-cat .cat {
  display: block;
  font-size: 13px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
}
#news .two-column .two-column-inner .right #news-1 article ul li .date-cat .cat:before {
  content: "⚫︎";
}
#news .two-column .two-column-inner .right #news-1 article ul li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #514D4D;
  letter-spacing: 0.05em;
  margin-top: 13px;
}
#news .two-column .two-column-inner .right #news-1 .pagination {
  display: flex;
  width: fit-content;
  justify-content: space-between;
  margin: 0px auto;
  column-gap: 5px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #news .two-column .two-column-inner .right #news-1 .pagination {
    margin-top: 66.6666666667px;
  }
}
#news .two-column .two-column-inner .right #news-1 .pagination a, #news .two-column .two-column-inner .right #news-1 .pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px !important;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 18px;
  color: #F49F22;
  background: white;
}
#news .two-column .two-column-inner .right #news-1 .pagination a.current, #news .two-column .two-column-inner .right #news-1 .pagination span.current {
  background: #F49F22;
  color: white;
}

#news-2 {
  position: relative;
}
#news-2:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/15;
  background: url(../img/common/cloud_green.svg), #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
}
#news-2 .news-2-inner {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner {
    padding-top: 66.6666666667px;
  }
}
#news-2 .news-2-inner {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner {
    padding-bottom: 33.3333333333px;
  }
}
#news-2 .news-2-inner {
  background: #D2D027;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #news-2 .news-2-inner {
    padding-bottom: 66.6666666667px;
  }
}
#news-2 .news-2-inner .title {
  position: relative;
  z-index: 1;
}
#news-2 .news-2-inner .title h2 {
  display: block;
  width: 100%;
}
#news-2 .news-2-inner .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .title h2 img {
    width: auto;
    height: 40px;
  }
}
#news-2 .news-2-inner .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#news-2 .news-2-inner .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#news-2 .news-2-inner .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#news-2 .news-2-inner .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #news-2 .news-2-inner .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #news-2 .news-2-inner .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#news-2 .news-2-inner .wrap {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #news-2 .news-2-inner .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#news-2 .news-2-inner .wrap {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .wrap {
    margin-top: 33.3333333333px;
  }
}
#news-2 .news-2-inner .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .wrap {
    flex-direction: column;
  }
}
#news-2 .news-2-inner .wrap:after {
  content: "";
  width: 310px;
  height: 0;
}
@media (max-width: 1199px) {
  #news-2 .news-2-inner .wrap:after {
    width: 31%;
  }
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .wrap:after {
    display: none;
  }
}
#news-2 .news-2-inner .wrap a {
  width: 310px;
  height: auto;
}
@media (max-width: 1199px) {
  #news-2 .news-2-inner .wrap a {
    width: 31%;
  }
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .wrap a {
    width: 100%;
  }
  #news-2 .news-2-inner .wrap a:not(:first-of-type) {
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #news-2 .news-2-inner .wrap a:not(:first-of-type) {
    margin-top: 33.3333333333px;
  }
}
#news-2 .news-2-inner .wrap a .img {
  width: 100%;
  height: auto;
  aspect-ratio: 3.1/2.3;
  border-radius: 20px;
  overflow: hidden;
}
#news-2 .news-2-inner .wrap a .img:hover img {
  transform: scale(1.1);
}
#news-2 .news-2-inner .wrap a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#news-2 .news-2-inner .wrap a h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  color: #514D4D;
  padding-left: 5px;
}
#news-2 .news-2-inner .wrap a p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
#news-2 .news-2-inner .wrap a p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#news-2 .news-2-inner .wrap a p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#news-2 .news-2-inner .wrap a p {
  color: #514D4D;
  margin-top: 20px;
  padding-left: 5px;
}
#news-2 .news-2-inner .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#news-2 .news-2-inner .btn:hover {
  opacity: 0.5;
}
#news-2 .news-2-inner .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #news-2 .news-2-inner .btn {
    margin-top: 50px;
  }
}

#outline-1 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #outline-1 {
    padding-top: 100px;
  }
}
#outline-1 {
  background: #FFFFFF;
}
#outline-1 .title {
  position: relative;
  z-index: 1;
}
#outline-1 .title h2 {
  display: block;
  width: 100%;
}
#outline-1 .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #outline-1 .title h2 img {
    width: auto;
    height: 40px;
  }
}
#outline-1 .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#outline-1 .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-1 .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-1 .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-1 .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #outline-1 .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #outline-1 .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #outline-1 .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#outline-1 .wrap {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #outline-1 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#outline-1 .wrap {
  padding-top: 75px;
}
@media (max-width: 768px) {
  #outline-1 .wrap {
    padding-top: 50px;
  }
}
#outline-1 .wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
@media (max-width: 768px) {
  #outline-1 .wrap {
    flex-direction: column;
  }
}
#outline-1 .wrap p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#outline-1 .wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-1 .wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-1 .wrap p {
  color: #514D4D;
  max-width: 630px;
}
@media (max-width: 768px) {
  #outline-1 .wrap p {
    order: 2;
    margin-top: 30px;
  }
}
#outline-1 .wrap img {
  width: 300px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 768px) {
  #outline-1 .wrap img {
    margin: 0px auto;
  }
}

#outline-2 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #outline-2 {
    padding-top: 100px;
  }
}
#outline-2 {
  background: #FFFFFF;
}
#outline-2 .title {
  position: relative;
  z-index: 1;
}
#outline-2 .title h2 {
  display: block;
  width: 100%;
}
#outline-2 .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #outline-2 .title h2 img {
    width: auto;
    height: 40px;
  }
}
#outline-2 .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#outline-2 .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-2 .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-2 .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-2 .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #outline-2 .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #outline-2 .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #outline-2 .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#outline-2 .wrap {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #outline-2 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#outline-2 .wrap {
  padding-top: 75px;
}
@media (max-width: 768px) {
  #outline-2 .wrap {
    padding-top: 50px;
  }
}
#outline-2 .wrap {
  display: flex;
  justify-content: space-between;
}
#outline-2 .wrap dl {
  width: 100%;
}
#outline-2 .wrap dl .dtdd-wrap {
  display: block;
  font-size: 16px;
  font-weight: 460;
  line-height: 1.8;
}
#outline-2 .wrap dl .dtdd-wrap:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#outline-2 .wrap dl .dtdd-wrap:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#outline-2 .wrap dl .dtdd-wrap {
  color: #514D4D;
  letter-spacing: 0.05em;
  padding: 30px 0;
  display: flex;
  position: relative;
}
#outline-2 .wrap dl .dtdd-wrap:first-of-type {
  padding-top: 0;
}
#outline-2 .wrap dl .dtdd-wrap:before {
  content: "";
  width: 100%;
  height: 3px;
  background: #BDBDBD;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#outline-2 .wrap dl .dtdd-wrap dt {
  width: 30%;
}
#outline-2 .wrap dl .dtdd-wrap dd {
  width: 70%;
}

#outline-3 {
  padding-top: 150px;
}
@media (max-width: 768px) {
  #outline-3 {
    padding-top: 100px;
  }
}
#outline-3 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #outline-3 {
    padding-bottom: 33.3333333333px;
  }
}
#outline-3 {
  background: #FFFFFF;
}
@media (max-width: 768px) {
  #outline-3 {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #outline-3 {
    padding-bottom: 66.6666666667px;
  }
}
#outline-3 .title {
  position: relative;
  z-index: 1;
}
#outline-3 .title h2 {
  display: block;
  width: 100%;
}
#outline-3 .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #outline-3 .title h2 img {
    width: auto;
    height: 40px;
  }
}
#outline-3 .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#outline-3 .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-3 .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-3 .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-3 .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #outline-3 .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #outline-3 .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #outline-3 .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#outline-3 .wrap {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #outline-3 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#outline-3 .wrap {
  padding-top: 75px;
}
@media (max-width: 768px) {
  #outline-3 .wrap {
    padding-top: 50px;
  }
}
#outline-3 .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
}
#outline-3 .wrap .btn {
  width: 450px;
  height: 120px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#outline-3 .wrap .btn:hover {
  opacity: 0.5;
}
@media (max-width: 768px) {
  #outline-3 .wrap .btn {
    height: 80px;
  }
}

#outline-4 {
  position: relative;
}
#outline-4:before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 144/15;
  background: url(../img/common/cloud_green.svg), #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
}
#outline-4 .outline-4-inner {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner {
    padding-top: 66.6666666667px;
  }
}
#outline-4 .outline-4-inner {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner {
    padding-bottom: 33.3333333333px;
  }
}
#outline-4 .outline-4-inner {
  background: #D2D027;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #outline-4 .outline-4-inner {
    padding-bottom: 66.6666666667px;
  }
}
#outline-4 .outline-4-inner .title {
  position: relative;
  z-index: 1;
}
#outline-4 .outline-4-inner .title h2 {
  display: block;
  width: 100%;
}
#outline-4 .outline-4-inner .title h2 img {
  margin: 0px auto;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .title h2 img {
    width: auto;
    height: 40px;
  }
}
#outline-4 .outline-4-inner .title p {
  font-size: 18px;
  font-weight: 450;
  line-height: 2;
}
#outline-4 .outline-4-inner .title p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-4 .outline-4-inner .title p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#outline-4 .outline-4-inner .title p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
  text-align: center;
  margin: 0px auto;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .title p {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .title p {
    width: 90%;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.7;
  }
  #outline-4 .outline-4-inner .title p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  #outline-4 .outline-4-inner .title p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
#outline-4 .outline-4-inner .wrap {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #outline-4 .outline-4-inner .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#outline-4 .outline-4-inner .wrap .map {
  border: 15px solid white;
  border-radius: 20px;
  aspect-ratio: 2/1;
  background: #FFFFFF;
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .wrap .map {
    margin-top: 33.3333333333px;
  }
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .wrap .map {
    border: 8px solid white;
    border-radius: 17px;
    aspect-ratio: 4/3;
  }
}
#outline-4 .outline-4-inner .wrap .map iframe {
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px;
}
#outline-4 .outline-4-inner .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#outline-4 .outline-4-inner .btn:hover {
  opacity: 0.5;
}
#outline-4 .outline-4-inner .btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #outline-4 .outline-4-inner .btn {
    margin-top: 33.3333333333px;
  }
}

#single-1 {
  padding-top: 260px;
}
@media (max-width: 768px) {
  #single-1 {
    padding-top: 173.3333333333px;
  }
}
#single-1 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #single-1 {
    padding-bottom: 33.3333333333px;
  }
}
#single-1 .wrap {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #single-1 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#single-1 .wrap .date-cat {
  display: flex;
  gap: 0 30px;
}
#single-1 .wrap .date-cat .date {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #514D4D;
}
#single-1 .wrap .date-cat .cat {
  display: block;
  font-size: 13px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #514D4D;
}
#single-1 .wrap .date-cat .cat:before {
  content: "⚫︎";
}
#single-1 .wrap h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #514D4D;
  line-height: 1.6;
}
#single-1 .wrap h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#single-1 .wrap h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#single-1 .wrap h1 {
  margin-top: 10px;
  padding-bottom: 20px;
  position: relative;
}
#single-1 .wrap h1:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #DBDBDB;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#single-1 .wrap .content * {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #single-1 .wrap .content * {
    margin-top: 33.3333333333px;
  }
}
#single-1 .wrap .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
#single-1 .wrap .content p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#single-1 .wrap .content p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#single-1 .wrap .content p {
  color: #514D4D;
}
#single-1 .wrap .content img {
  max-width: 100%;
  height: auto;
  justify-content: contain;
  border-radius: 20px;
}
#single-1 .wrap .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#single-1 .wrap .btn:hover {
  opacity: 0.5;
}
#single-1 .wrap .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #single-1 .wrap .btn {
    margin-top: 50px;
  }
}
#single-1 .wrap .btn {
  margin-left: 0;
  margin-right: auto;
  border: 0;
  background: white;
}

#entry-1 {
  padding-top: 260px;
}
@media (max-width: 768px) {
  #entry-1 {
    padding-top: 173.3333333333px;
  }
}
#entry-1 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #entry-1 {
    padding-bottom: 33.3333333333px;
  }
}
#entry-1 .wrap {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #entry-1 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#entry-1 .wrap .title {
  padding-bottom: 36px;
  position: relative;
}
#entry-1 .wrap .title:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #DBDBDB;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#entry-1 .wrap .title .discription {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#entry-1 .wrap .title .discription:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#entry-1 .wrap .title .discription:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#entry-1 .wrap .title .discription {
  color: #514D4D;
  margin-top: 16px;
}
#entry-1 .wrap .title h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #514D4D;
  line-height: 1.6;
}
#entry-1 .wrap .title h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#entry-1 .wrap .title h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#entry-1 .wrap .content {
  padding-top: 100px;
}
@media (max-width: 768px) {
  #entry-1 .wrap .content {
    padding-top: 66.6666666667px;
  }
}
#entry-1 .wrap .content h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #514D4D;
}
#entry-1 .wrap .content dl {
  width: 100%;
}
#entry-1 .wrap .content dl .dtdd-wrap {
  display: block;
  font-size: 16px;
  font-weight: 460;
  line-height: 1.8;
}
#entry-1 .wrap .content dl .dtdd-wrap:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#entry-1 .wrap .content dl .dtdd-wrap:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#entry-1 .wrap .content dl .dtdd-wrap {
  color: #514D4D;
  letter-spacing: 0.05em;
  padding: 30px 0;
  display: flex;
  position: relative;
}
#entry-1 .wrap .content dl .dtdd-wrap:before {
  content: "";
  width: 100%;
  height: 3px;
  background: #BDBDBD;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#entry-1 .wrap .content dl .dtdd-wrap dt {
  width: 30%;
}
#entry-1 .wrap .content dl .dtdd-wrap dd {
  width: 70%;
}
#entry-1 .wrap .message {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
#entry-1 .wrap .message:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#entry-1 .wrap .message:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#entry-1 .wrap .message {
  color: #514D4D;
  text-align: center;
  margin-top: 75px;
}
@media (max-width: 768px) {
  #entry-1 .wrap .message {
    margin-top: 50px;
  }
}
#entry-1 .wrap .btn {
  width: fit-content;
  min-width: 320px;
  height: 80px;
  background: #F5F5F5;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F9E539;
  border-radius: 160px;
  margin: 0px auto;
  font-size: 20px;
  font-weight: 500;
  color: #514D4D;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
#entry-1 .wrap .btn:hover {
  opacity: 0.5;
}
#entry-1 .wrap .btn {
  margin-top: 75px;
}
@media (max-width: 768px) {
  #entry-1 .wrap .btn {
    margin-top: 50px;
  }
}
#entry-1 .wrap .btn {
  border: 0;
  background: white;
}

#pp-1 {
  padding-top: 260px;
}
@media (max-width: 768px) {
  #pp-1 {
    padding-top: 173.3333333333px;
  }
}
#pp-1 {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  #pp-1 {
    padding-bottom: 33.3333333333px;
  }
}
#pp-1 .wrap {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  #pp-1 .wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
#pp-1 .wrap .title {
  padding-bottom: 36px;
  position: relative;
}
#pp-1 .wrap .title:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #DBDBDB;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
}
#pp-1 .wrap .title .discription {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#pp-1 .wrap .title .discription:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
#pp-1 .wrap .title .discription:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
#pp-1 .wrap .title .discription {
  color: #514D4D;
  margin-top: 16px;
}
#pp-1 .wrap .title h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #514D4D;
  line-height: 1.6;
}
#pp-1 .wrap .title h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#pp-1 .wrap .title h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
#pp-1 .wrap .content {
  padding-top: 75px;
}
@media (max-width: 768px) {
  #pp-1 .wrap .content {
    padding-top: 50px;
  }
}
#pp-1 .wrap .content h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #514D4D;
}
#pp-1 .wrap .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
#pp-1 .wrap .content p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#pp-1 .wrap .content p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#pp-1 .wrap .content p {
  color: #514D4D;
  margin-top: 30px;
}

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