@charset "UTF-8";
/* テーマ情報の設定 ====================================================================================================
Theme Name:TEMPLATE
Theme URL: 
Description:コーディングベース
Author: Muntaso
Version: β
Tags:
License: 
License URI: 
*/
/* ブレイクポイントの設定 ====================================================================================================
$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;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
  font-family: "Noto Sans JP", 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) {
  .sp {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* 共通部分設定 ===========================================
headerやfooter、お問い合わせ導線項目などの全体を通して共通になるセクションはここに記載する。
※1つの項目としてレイアウトが完成し、コンポーネント化されているもの以外はこちらに記載しない。（リストの形式などはmixinで設定）
*/
/* スマホメニューレイアウト ****************************/
.navToggle {
  position: fixed; /* bodyに対しての絶対位置指定 */
  top: 2.4%;
  right: 8%;
  margin: auto;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  text-align: center;
  mix-blend-mode: difference;
}
@media (min-width: 1200px) {
  .navToggle {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navToggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .navToggle {
    display: block;
    width: 30px;
    height: 30px;
  }
}
.navToggle.active {
  background: none;
}
.navToggle.active span:nth-child(1) {
  top: 20px;
  left: 0px;
  transform: rotate(-45deg);
  border-bottom: solid 2px white;
}
.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 20px;
  right: 0px;
  transform: rotate(45deg);
  border-bottom: solid 2px white;
}
.navToggle.active span:nth-child(4) {
  display: none;
}
.navToggle span {
  display: block;
  width: 100%;
  transition: 0.35s ease-in-out;
  position: absolute;
  top: auto;
  right: 0px;
  bottom: auto;
  left: 0px;
  margin: auto;
  margin: auto;
}
.navToggle span:nth-child(1) {
  top: 20px;
  border-bottom: solid 2px #4e4e4e;
}
@media (max-width: 768px) {
  .navToggle span:nth-child(1) {
    top: 14px;
  }
}
.navToggle span:nth-child(2) {
  top: 35px;
  border-bottom: solid 2px #4e4e4e;
}
@media (max-width: 768px) {
  .navToggle span:nth-child(2) {
    top: 24.5px;
  }
}
.navToggle span:nth-child(3) {
  top: 50px;
  border-bottom: solid 2px #4e4e4e;
}
@media (max-width: 768px) {
  .navToggle span:nth-child(3) {
    top: 35px;
  }
}
.navToggle span:nth-child(4) {
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #F5F5F5;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1.2px;
  top: 70px;
}
@media (max-width: 768px) {
  .navToggle span:nth-child(4) {
    top: 49px;
  }
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 62.5px;
  }
}
.pagination .screen-reader-text {
  display: none !important;
}
.pagination .nav-links {
  margin: 0px auto;
  display: flex;
  align-items: center;
}
.pagination .nav-links a:hover {
  color: #F5F5F5;
}
.pagination .nav-links .page-numbers, .pagination .nav-links .current {
  transition: 0.2s ease-in-out;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-right: 5px;
  color: #4e4e4e;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .nav-links .page-numbers:before, .pagination .nav-links .current:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
.pagination .nav-links .page-numbers:after, .pagination .nav-links .current:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  .pagination .nav-links .page-numbers, .pagination .nav-links .current {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pagination .nav-links .page-numbers, .pagination .nav-links .current {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .pagination .nav-links .page-numbers, .pagination .nav-links .current {
    margin-right: 3.125px;
  }
}
.pagination .nav-links .page-numbers.current, .pagination .nav-links .current.current {
  background: #F5F5F5;
}
.pagination .nav-links .page-numbers:last-child, .pagination .nav-links .current:last-child {
  margin-right: 0px;
}
@media (max-width: 768px) {
  .pagination .nav-links .page-numbers:last-child, .pagination .nav-links .current:last-child {
    margin-right: 0px;
  }
}
.pagination .nav-links .page-numbers:hover, .pagination .nav-links .current:hover {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: white;
  color: #4e4e4e;
}

header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9999;
  mix-blend-mode: difference;
}
@media (max-width: 768px) {
  header {
    width: 100%;
    top: 0px;
    right: 0px;
    mix-blend-mode: normal;
    transition: all 0.6s;
    transform: translateX(100%);
  }
  header.active {
    transform: translateX(0%);
  }
}
@media (max-width: 768px) {
  header nav {
    padding-top: 100px;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header nav {
    padding-top: 62.5px;
  }
}
header nav a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-top: 30px;
  transition: 0.2s ease-in-out;
  display: block;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  text-align: right;
  color: white;
  opacity: 0.4;
}
header nav a:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
header nav a:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  header nav a {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  header nav a {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  header nav a {
    margin-top: 18.75px;
  }
}
header nav a:first-of-type {
  margin-top: 0px;
}
@media (max-width: 768px) {
  header nav a:first-of-type {
    margin-top: 0px;
  }
}
header nav a:hover {
  opacity: 1;
}
header nav a.current {
  opacity: 1;
}
@media (max-width: 768px) {
  header nav a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #4e4e4e;
    text-align: center;
    margin-top: 50px;
  }
  header nav a:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1) * 0.5em);
    content: "";
  }
  header nav a:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) and (max-width: 1199px) {
  header nav a {
    font-size: 2vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header nav a {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header nav a {
    margin-top: 31.25px;
  }
}

footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #F5F5F5;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  footer {
    padding-top: 31.25px;
  }
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 31.25px;
  }
}
footer .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  footer .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  footer .wrap {
    width: 92%;
  }
}
footer .wrap svg {
  width: 100px;
  display: block;
  margin: 0px auto;
  fill: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  footer .wrap svg {
    margin-bottom: 18.75px;
  }
}
@media (max-width: 768px) {
  footer .wrap svg {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  footer .wrap svg {
    margin-bottom: 31.25px;
  }
}
footer .wrap p {
  font-size: 10px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}
footer .wrap .link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
@media (max-width: 768px) {
  footer .wrap .link {
    margin-top: 11.25px;
  }
}
footer .wrap .link a {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.36);
  display: inline-block;
  margin: 0px auto;
}
footer .wrap .link a:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
footer .wrap .link a:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  footer .wrap .link a {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  footer .wrap .link a {
    font-size: 12px;
  }
}
footer .wrap .cr {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 20px;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  text-align: center;
  color: rgba(0, 0, 0, 0.36);
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  footer .wrap .cr {
    margin-top: 12.5px;
  }
}
#under-main {
  width: 100%;
  height: 400px;
  margin: 0px auto;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #under-main {
    height: 280px;
    padding: 4%;
  }
}
#under-main .wrap {
  width: 100%;
  height: 100%;
  background: white;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgb(224, 224, 224);
  background: linear-gradient(to bottom, rgb(224, 224, 224) 0%, rgb(245, 245, 245) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e0e0e0", endColorstr="#f5f5f5",GradientType=0 );
}
@media (max-width: 768px) {
  #under-main .wrap {
    border-radius: 5px;
  }
}
#under-main .wrap h1 {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 20px;
  margin: auto;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
  letter-spacing: 1.4px;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  color: #4e4e4e;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0.7;
}
#under-main .wrap h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#under-main .wrap h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #under-main .wrap h1 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  #under-main .wrap h1 {
    font-size: 36px;
  }
}
#under-main .wrap h1 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(0, 0, 0, 0.4);
}
#under-main .wrap h1 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#under-main .wrap h1 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #under-main .wrap h1 span {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #under-main .wrap h1 span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #under-main .wrap h1 span {
    margin-top: 6.25px;
  }
}
#under-main .wrap h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#under-main .wrap h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #under-main .wrap h1 {
    font-size: 5.4vw;
  }
}
@media (max-width: 768px) {
  #under-main .wrap h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  #under-main .wrap h1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 4%;
    margin: auto;
  }
  #under-main .wrap h1:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.2) * 0.5em);
    content: "";
  }
  #under-main .wrap h1:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.2) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) and (max-width: 1199px) {
  #under-main .wrap h1 {
    font-size: 3.4vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #under-main .wrap h1 {
    font-size: 30px;
  }
}
#under-main .wrap h1 span {
  text-align: left;
  color: #4e4e4e;
}

.main-spacer {
  width: 100%;
  height: 100vh;
  opacity: 0;
  position: relative;
  z-index: -1;
}

/* TOPページ =============================================================================================================

*/
body {
  background: #F5F5F5;
}

#main {
  width: 100%;
  height: 100vh;
  margin: 0px auto;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  z-index: 0;
}
@media (max-width: 768px) {
  #main {
    padding: 4%;
  }
}
#main .wrap {
  width: 100%;
  height: 100%;
  background: white;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #main .wrap {
    border-radius: 5px;
  }
}
#main .wrap .logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 20px;
  left: 20px;
  z-index: 9000;
  mix-blend-mode: difference;
}
@media (max-width: 768px) {
  #main .wrap .logo {
    top: 2.4%;
    left: 4%;
    mix-blend-mode: normal;
  }
}
#main .wrap .logo p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  color: white;
}
#main .wrap .logo p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#main .wrap .logo p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap .logo p {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  #main .wrap .logo p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #main .wrap .logo p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }
  #main .wrap .logo p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1) * 0.5em);
    content: "";
  }
  #main .wrap .logo p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) and (max-width: 1199px) {
  #main .wrap .logo p {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #main .wrap .logo p {
    font-size: 12px;
  }
}
#main .wrap .logo svg {
  margin-top: 10px;
  fill: white;
}
@media (max-width: 768px) {
  #main .wrap .logo svg {
    margin-top: 6.25px;
  }
}
@media (max-width: 768px) {
  #main .wrap .logo svg {
    width: 180px;
  }
}
#main .wrap h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  position: absolute;
  top: 50vh;
  right: auto;
  bottom: auto;
  left: 20px;
  margin: auto;
  margin: auto;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 100;
  mix-blend-mode: difference;
}
#main .wrap h1:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.1) * 0.5em);
  content: "";
}
#main .wrap h1:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap h1 {
    font-size: 6vw;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 54vh;
    right: auto;
    bottom: auto;
    left: 4%;
    margin: auto;
    mix-blend-mode: normal;
  }
  #main .wrap h1:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.2) * 0.5em);
    content: "";
  }
  #main .wrap h1:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.2) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) and (max-width: 1199px) {
  #main .wrap h1 {
    font-size: 3.4vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #main .wrap h1 {
    font-size: 30px;
  }
}
#main .wrap h1 p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-top: 60px;
  padding-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  position: relative;
  left: -3px;
}
#main .wrap h1 p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#main .wrap h1 p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap h1 p {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 p {
    margin-top: 37.5px;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 p {
    padding-bottom: 3.75px;
  }
}
@media (max-width: 768px) {
  #main .wrap h1 p {
    margin-top: 30px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #main .wrap h1 p {
    margin-top: 18.75px;
  }
}
#main .wrap .slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#main .wrap .slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
}
#main .wrap .pickup {
  width: 400px;
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 20px;
  left: auto;
  margin: auto;
  z-index: 9999;
  pointer-events: auto;
}
@media (max-width: 768px) {
  #main .wrap .pickup {
    width: 91%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 2.4%;
    left: 0;
    margin: auto;
  }
}
#main .wrap .pickup .title {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main .wrap .pickup .title span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}
#main .wrap .pickup .title span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#main .wrap .pickup .title span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap .pickup .title span {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  #main .wrap .pickup .title span {
    font-size: 16px;
  }
}
#main .wrap .pickup .title .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  color: white;
  margin-left: 30px;
}
@media (max-width: 768px) {
  #main .wrap .pickup .title .line {
    margin-left: 18.75px;
  }
}
#main .wrap .pickup a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
@media (max-width: 768px) {
  #main .wrap .pickup a {
    margin-top: 9.375px;
  }
}
#main .wrap .pickup a img {
  width: 78px;
  height: 78px;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
}
@media (max-width: 768px) {
  #main .wrap .pickup a img {
    width: 60px;
    height: 60px;
  }
}
#main .wrap .pickup a p {
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 30px;
}
#main .wrap .pickup a p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#main .wrap .pickup a p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap .pickup a p {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap .pickup a p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap .pickup a p {
    margin-left: 18.75px;
  }
}
#main .wrap .pickup a p span {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  display: block;
}
#main .wrap .pickup a p span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#main .wrap .pickup a p span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #main .wrap .pickup a p span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap .pickup a p span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #main .wrap .pickup a p span {
    margin-bottom: 3.75px;
  }
}
#main .zoom {
  -webkit-animation: fadezoom 8s 0s forwards;
          animation: fadezoom 8s 0s forwards;
}
@-webkit-keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

#top-1 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F5F5F5;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #top-1 {
    padding-top: 62.5px;
  }
}
@media (max-width: 768px) {
  #top-1 {
    padding-bottom: 62.5px;
  }
}
#top-1 h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
  letter-spacing: 1.4px;
  color: #4e4e4e;
}
#top-1 h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-1 h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-1 h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  #top-1 h2 {
    font-size: 36px;
  }
}
#top-1 h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(0, 0, 0, 0.4);
}
#top-1 h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-1 h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-1 h2 span {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-1 h2 span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-1 h2 span {
    margin-top: 6.25px;
  }
}
#top-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  #top-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap {
    width: 92%;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap {
    margin-top: 31.25px;
  }
}
#top-1 .wrap p {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.4;
  color: #4e4e4e;
  text-align: center;
}
#top-1 .wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2.4) * 0.5em);
  content: "";
}
#top-1 .wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2.4) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-1 .wrap p {
    font-size: 1.6vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-1 .wrap p {
    font-size: 12px;
  }
}

#top-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #top-2 {
    padding-top: 62.5px;
  }
}
@media (max-width: 768px) {
  #top-2 {
    padding-bottom: 62.5px;
  }
}
#top-2 h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
  letter-spacing: 1.4px;
  color: #4e4e4e;
}
#top-2 h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-2 h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  #top-2 h2 {
    font-size: 36px;
  }
}
#top-2 h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(0, 0, 0, 0.4);
}
#top-2 h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-2 h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 h2 span {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 h2 span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 h2 span {
    margin-top: 6.25px;
  }
}
#top-2 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  #top-2 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap {
    width: 92%;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap {
    margin-top: 31.25px;
  }
}
#top-2 .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top-2 .wrap ul::after {
  content: "";
  width: 18.4vw;
  height: auto;
}
@media (max-width: 768px) {
  #top-2 .wrap ul::after {
    display: none;
  }
}
#top-2 .wrap ul li {
  width: 18.4vw;
}
#top-2 .wrap ul li:hover .img img {
  filter: brightness(100%);
  transform: scale(1.04);
}
#top-2 .wrap ul li:nth-of-type(n+4) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #top-2 .wrap ul li:nth-of-type(n+4) {
    margin-top: 31.25px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #top-2 .wrap ul li {
    margin-top: 31.25px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li:first-of-type {
    margin-top: 0px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #top-2 .wrap ul li:first-of-type {
    margin-top: 0px;
  }
}
#top-2 .wrap ul li .img {
  width: 100%;
  height: 12vw;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #top-2 .wrap ul li .img {
    height: 54vw;
  }
}
#top-2 .wrap ul li .img img {
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(80%);
}
#top-2 .wrap ul li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #4e4e4e;
}
#top-2 .wrap ul li p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#top-2 .wrap ul li p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 .wrap ul li p {
    font-size: 1.6vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li p {
    font-size: 12px;
  }
}
#top-2 .wrap ul li p span {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-top: 18px;
  margin-bottom: 6px;
  margin-left: 2.6px;
  display: block;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  color: gray;
}
#top-2 .wrap ul li p span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-2 .wrap ul li p span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 .wrap ul li p span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li p span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li p span {
    margin-top: 11.25px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li p span {
    margin-bottom: 3.75px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li p span {
    margin-left: 1.625px;
  }
}
#top-2 .wrap ul li .writer {
  width: 100%;
  display: block;
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  text-align: left;
  margin-top: 20px;
}
#top-2 .wrap ul li .writer:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-2 .wrap ul li .writer:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 .wrap ul li .writer {
    font-size: 1vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li .writer {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .wrap ul li .writer {
    margin-top: 12.5px;
  }
}
#top-2 .btn {
  transition: 0.2s ease-in-out;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px auto;
  margin-top: 100px;
}
#top-2 .btn span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}
#top-2 .btn span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-2 .btn span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-2 .btn span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-2 .btn span {
    font-size: 12px;
  }
}
#top-2 .btn:hover:before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  left: -2%;
  margin: auto;
  /*波形の形状*/
  border: 1px solid #333;
  width: 101%;
  height: 101%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  -webkit-animation: 1.2s circleanime linear infinite;
          animation: 1.2s circleanime linear infinite;
  background: #F5F5F5;
}
@-webkit-keyframes circleanime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    background: #F5F5F5;
  }
  70% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes circleanime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    background: #F5F5F5;
  }
  70% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  #top-2 .btn {
    margin-top: 62.5px;
  }
}

#top-3 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F5F5F5;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #top-3 {
    padding-top: 62.5px;
  }
}
@media (max-width: 768px) {
  #top-3 {
    padding-bottom: 62.5px;
  }
}
#top-3 h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
  letter-spacing: 1.4px;
  color: #4e4e4e;
}
#top-3 h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-3 h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-3 h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  #top-3 h2 {
    font-size: 36px;
  }
}
#top-3 h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(0, 0, 0, 0.4);
}
#top-3 h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-3 h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-3 h2 span {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-3 h2 span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-3 h2 span {
    margin-top: 6.25px;
  }
}
#top-3 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  #top-3 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap {
    width: 92%;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap {
    margin-top: 31.25px;
  }
}
#top-3 .wrap ul li {
  background: white;
  border-radius: 6px;
  padding-top: 40px;
  padding-right: 38px;
  padding-bottom: 40px;
  padding-left: 38px;
}
@media (max-width: 768px) {
  #top-3 .wrap ul li {
    padding-top: 25px;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap ul li {
    padding-right: 23.75px;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap ul li {
    padding-bottom: 25px;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap ul li {
    padding-left: 23.75px;
  }
}
#top-3 .wrap ul li:nth-of-type(n+2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  #top-3 .wrap ul li:nth-of-type(n+2) {
    margin-top: 12.5px;
  }
}
#top-3 .wrap ul li a {
  display: flex;
  justify-content: space-between;
}
#top-3 .wrap ul li a span {
  display: block;
}
#top-3 .wrap ul li a span:first-of-type {
  margin-right: 40px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  #top-3 .wrap ul li a span:first-of-type {
    margin-right: 25px;
  }
}
#top-3 .wrap ul li a span:first-of-type:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-3 .wrap ul li a span:first-of-type:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-3 .wrap ul li a span:first-of-type {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap ul li a span:first-of-type {
    font-size: 12px;
  }
}
#top-3 .wrap ul li a span:last-of-type {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}
#top-3 .wrap ul li a span:last-of-type:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#top-3 .wrap ul li a span:last-of-type:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-3 .wrap ul li a span:last-of-type {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-3 .wrap ul li a span:last-of-type {
    font-size: 12px;
  }
}
#top-3 .btn {
  transition: 0.2s ease-in-out;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px auto;
  margin-top: 100px;
}
#top-3 .btn span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}
#top-3 .btn span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-3 .btn span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-3 .btn span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-3 .btn span {
    font-size: 12px;
  }
}
#top-3 .btn:hover:before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  left: -2%;
  margin: auto;
  /*波形の形状*/
  border: 1px solid #333;
  width: 101%;
  height: 101%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  -webkit-animation: 1.2s circleanime linear infinite;
          animation: 1.2s circleanime linear infinite;
  background: #F5F5F5;
}
@keyframes circleanime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    background: #F5F5F5;
  }
  70% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  #top-3 .btn {
    margin-top: 62.5px;
  }
}

#top-4 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #top-4 {
    padding-top: 62.5px;
  }
}
@media (max-width: 768px) {
  #top-4 {
    padding-bottom: 62.5px;
  }
}
#top-4 h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: white;
  text-align: center;
  letter-spacing: 1.4px;
  color: #4e4e4e;
}
#top-4 h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-4 h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-4 h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  #top-4 h2 {
    font-size: 36px;
  }
}
#top-4 h2 span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 1.2px;
  color: rgba(0, 0, 0, 0.4);
}
#top-4 h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-4 h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-4 h2 span {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-4 h2 span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-4 h2 span {
    margin-top: 6.25px;
  }
}
#top-4 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
  margin-top: 50px;
  background: #F5F5F5;
  border-radius: 4px;
  padding-top: 32px;
  padding-right: 38px;
  padding-bottom: 32px;
  padding-left: 38px;
}
@media (max-width: 1199px) {
  #top-4 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    width: 92%;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    margin-top: 31.25px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    padding-right: 23.75px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap {
    padding-left: 23.75px;
  }
}
#top-4 .wrap p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  width: 100%;
  color: rgba(0, 0, 0, 0.8);
}
#top-4 .wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-4 .wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-4 .wrap p {
    font-size: 2vw;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }
  #top-4 .wrap p:before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1) * 0.5em);
    content: "";
  }
  #top-4 .wrap p:after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1) * 0.5em);
    content: "";
  }
}
@media (max-width: 768px) and (max-width: 1199px) {
  #top-4 .wrap p {
    font-size: 1.6vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #top-4 .wrap p {
    font-size: 12px;
  }
}
#top-4 .wrap span {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-top: 12px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
#top-4 .wrap span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#top-4 .wrap span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #top-4 .wrap span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #top-4 .wrap span {
    margin-top: 7.5px;
  }
}

/* ABOUTページ =============================================================================================================

*/
#about-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #about-1 {
    padding-bottom: 62.5px;
  }
}
#about-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #about-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap {
    width: 92%;
  }
}
#about-1 .wrap .box:nth-of-type(n+2) {
  margin-top: 100px;
}
@media (max-width: 768px) {
  #about-1 .wrap .box:nth-of-type(n+2) {
    margin-top: 62.5px;
  }
}
#about-1 .wrap .box h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: #4e4e4e;
}
#about-1 .wrap .box h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#about-1 .wrap .box h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #about-1 .wrap .box h2 {
    font-size: 2.4vw;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box h2 {
    margin-bottom: 10px;
  }
}
#about-1 .wrap .box h2 span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding-left: 16px;
}
#about-1 .wrap .box h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#about-1 .wrap .box h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #about-1 .wrap .box h2 span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box h2 span {
    font-size: 12px;
  }
}
#about-1 .wrap .box .dl-wrap {
  padding: 75px;
  border-radius: 6px;
  background: white;
}
@media (max-width: 1199px) {
  #about-1 .wrap .box .dl-wrap {
    padding: 6vw;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap {
    padding: 40px 20px;
  }
}
#about-1 .wrap .box .dl-wrap dl {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 34px;
  padding-bottom: 34px;
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl {
    padding-top: 21.25px;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl {
    padding-bottom: 21.25px;
  }
}
#about-1 .wrap .box .dl-wrap dl:first-of-type {
  padding-top: 0px;
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl:first-of-type {
    padding-top: 0px;
  }
}
#about-1 .wrap .box .dl-wrap dl dt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: #4e4e4e;
  width: 200px;
}
#about-1 .wrap .box .dl-wrap dl dt:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#about-1 .wrap .box .dl-wrap dl dt:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #about-1 .wrap .box .dl-wrap dl dt {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl dt {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  #about-1 .wrap .box .dl-wrap dl dt {
    width: 16vw;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl dt {
    width: 100px;
  }
}
#about-1 .wrap .box .dl-wrap dl dd {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: #4e4e4e;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
}
#about-1 .wrap .box .dl-wrap dl dd:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#about-1 .wrap .box .dl-wrap dl dd:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #about-1 .wrap .box .dl-wrap dl dd {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #about-1 .wrap .box .dl-wrap dl dd {
    font-size: 12px;
  }
}

/* TOPICSページ =============================================================================================================

*/
#topics-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #topics-1 {
    padding-bottom: 62.5px;
  }
}
#topics-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #topics-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap {
    width: 92%;
  }
}
#topics-1 .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#topics-1 .wrap ul::after {
  content: "";
  width: 18.4vw;
  height: auto;
}
@media (max-width: 768px) {
  #topics-1 .wrap ul::after {
    display: none;
  }
}
#topics-1 .wrap ul li {
  width: 18.4vw;
}
#topics-1 .wrap ul li:hover .img img {
  filter: brightness(100%);
  transform: scale(1.04);
}
#topics-1 .wrap ul li:nth-of-type(n+4) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li:nth-of-type(n+4) {
    margin-top: 31.25px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #topics-1 .wrap ul li {
    margin-top: 31.25px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li:first-of-type {
    margin-top: 0px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #topics-1 .wrap ul li:first-of-type {
    margin-top: 0px;
  }
}
#topics-1 .wrap ul li .img {
  width: 100%;
  height: 12vw;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li .img {
    height: 54vw;
  }
}
#topics-1 .wrap ul li .img img {
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(80%);
}
#topics-1 .wrap ul li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #4e4e4e;
}
#topics-1 .wrap ul li p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#topics-1 .wrap ul li p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-1 .wrap ul li p {
    font-size: 1.6vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li p {
    font-size: 12px;
  }
}
#topics-1 .wrap ul li p span {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-top: 18px;
  margin-bottom: 6px;
  margin-left: 2.6px;
  display: block;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  color: gray;
}
#topics-1 .wrap ul li p span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#topics-1 .wrap ul li p span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-1 .wrap ul li p span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li p span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li p span {
    margin-top: 11.25px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li p span {
    margin-bottom: 3.75px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li p span {
    margin-left: 1.625px;
  }
}
#topics-1 .wrap ul li .writer {
  width: 100%;
  display: block;
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  text-align: left;
  margin-top: 20px;
}
#topics-1 .wrap ul li .writer:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#topics-1 .wrap ul li .writer:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-1 .wrap ul li .writer {
    font-size: 1vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li .writer {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-1 .wrap ul li .writer {
    margin-top: 12.5px;
  }
}

#topics-single-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #topics-single-1 {
    padding-bottom: 62.5px;
  }
}
#topics-single-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap {
    width: 92%;
  }
}
#topics-single-1 .wrap h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #4e4e4e;
  position: relative;
  left: -4px;
}
#topics-single-1 .wrap h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#topics-single-1 .wrap h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap h2 {
    font-size: 2.4vw;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap h2 {
    margin-bottom: 10px;
  }
}
#topics-single-1 .wrap h2 span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding-left: 16px;
}
#topics-single-1 .wrap h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#topics-single-1 .wrap h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap h2 span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap h2 span {
    font-size: 12px;
  }
}
#topics-single-1 .wrap .box {
  padding: 80px;
  border-radius: 6px;
  background: white;
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap .box {
    padding: 6.6vw;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .box {
    padding: 40px 20px;
  }
}
#topics-single-1 .wrap .box p, #topics-single-1 .wrap .box img {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .box p, #topics-single-1 .wrap .box img {
    margin-bottom: 18.75px;
  }
}
#topics-single-1 .wrap .box p:last-child, #topics-single-1 .wrap .box img:last-child {
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .box p:last-child, #topics-single-1 .wrap .box img:last-child {
    margin-bottom: 0px;
  }
}
#topics-single-1 .wrap .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #4e4e4e;
}
#topics-single-1 .wrap .box p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#topics-single-1 .wrap .box p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap .box p {
    font-size: 1.6vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .box p {
    font-size: 12px;
  }
}
#topics-single-1 .wrap .box img {
  width: auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#topics-single-1 .wrap .btn {
  transition: 0.2s ease-in-out;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px auto;
  margin-top: 100px;
}
#topics-single-1 .wrap .btn span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.6px;
}
#topics-single-1 .wrap .btn span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#topics-single-1 .wrap .btn span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #topics-single-1 .wrap .btn span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .btn span {
    font-size: 12px;
  }
}
#topics-single-1 .wrap .btn:hover:before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  left: -2%;
  margin: auto;
  /*波形の形状*/
  border: 1px solid #333;
  width: 101%;
  height: 101%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  -webkit-animation: 1.2s circleanime linear infinite;
          animation: 1.2s circleanime linear infinite;
  background: #F5F5F5;
}
@keyframes circleanime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    background: #F5F5F5;
  }
  70% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  #topics-single-1 .wrap .btn {
    margin-top: 62.5px;
  }
}

/* INFOMATIONページ =============================================================================================================

*/
#infomation-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #infomation-1 {
    padding-bottom: 62.5px;
  }
}
#infomation-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #infomation-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap {
    width: 92%;
  }
}
#infomation-1 .wrap ul li {
  background: white;
  border-radius: 4px;
  padding-top: 32px;
  padding-right: 38px;
  padding-bottom: 32px;
  padding-left: 38px;
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li {
    padding-right: 23.75px;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li {
    padding-left: 23.75px;
  }
}
#infomation-1 .wrap ul li:nth-of-type(n+2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li:nth-of-type(n+2) {
    margin-top: 12.5px;
  }
}
#infomation-1 .wrap ul li a {
  display: flex;
  justify-content: space-between;
}
#infomation-1 .wrap ul li a span {
  display: block;
}
#infomation-1 .wrap ul li a span:first-of-type {
  margin-right: 40px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li a span:first-of-type {
    margin-right: 25px;
  }
}
#infomation-1 .wrap ul li a span:first-of-type:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#infomation-1 .wrap ul li a span:first-of-type:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #infomation-1 .wrap ul li a span:first-of-type {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li a span:first-of-type {
    font-size: 12px;
  }
}
#infomation-1 .wrap ul li a span:last-of-type {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}
#infomation-1 .wrap ul li a span:last-of-type:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#infomation-1 .wrap ul li a span:last-of-type:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #infomation-1 .wrap ul li a span:last-of-type {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #infomation-1 .wrap ul li a span:last-of-type {
    font-size: 12px;
  }
}

/* SCREENSHOTページ =============================================================================================================

*/
#ss-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #ss-1 {
    padding-bottom: 62.5px;
  }
}
#ss-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #ss-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #ss-1 .wrap {
    width: 92%;
  }
}
#ss-1 .wrap ul {
  -moz-columns: 4;
       columns: 4;
  margin: 0;
  transition: 0.2s ease-in-out;
}
@media (max-width: 768px) {
  #ss-1 .wrap ul {
    -moz-columns: 2;
         columns: 2;
  }
}
#ss-1 .wrap ul li {
  margin-bottom: 16px;
  height: auto;
  list-style: none;
}
@media (max-width: 768px) {
  #ss-1 .wrap ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  #ss-1 .wrap ul li {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #ss-1 .wrap ul li {
    margin-bottom: 12.5px;
  }
}
#ss-1 .wrap ul li a img {
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.1);
  vertical-align: bottom;
}
#ss-1 .wrap ul li a[data-title] {
  color: black !important;
}
#ss-1 .wrap ul li a[data-title] a {
  color: white !important;
}

/* GUIDELINEページ =============================================================================================================

*/
#guideline-1 {
  padding-bottom: 100px;
  background: #f5f5f5;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#ffffff",GradientType=0 );
}
@media (max-width: 768px) {
  #guideline-1 {
    padding-bottom: 62.5px;
  }
}
#guideline-1 .wrap {
  width: 60%;
  height: auto;
  margin: 0px auto;
  position: relative;
}
@media (max-width: 1199px) {
  #guideline-1 .wrap {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap {
    width: 92%;
  }
}
#guideline-1 .wrap .box:nth-of-type(n+2) {
  margin-top: 100px;
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box:nth-of-type(n+2) {
    margin-top: 62.5px;
  }
}
#guideline-1 .wrap .box h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Rubik", "Noto Sans JP", sans-serif;
  color: #4e4e4e;
}
#guideline-1 .wrap .box h2:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#guideline-1 .wrap .box h2:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #guideline-1 .wrap .box h2 {
    font-size: 2.4vw;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box h2 {
    margin-bottom: 10px;
  }
}
#guideline-1 .wrap .box h2 span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding-left: 16px;
}
#guideline-1 .wrap .box h2 span:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
#guideline-1 .wrap .box h2 span:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #guideline-1 .wrap .box h2 span {
    font-size: 1.2vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box h2 span {
    font-size: 12px;
  }
}
#guideline-1 .wrap .box .p-wrap {
  padding: 50px;
  border-radius: 6px;
  background: white;
}
@media (max-width: 1199px) {
  #guideline-1 .wrap .box .p-wrap {
    padding: 6vw;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box .p-wrap {
    padding: 40px 20px;
  }
}
#guideline-1 .wrap .box .p-wrap p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #4e4e4e;
}
#guideline-1 .wrap .box .p-wrap p:before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#guideline-1 .wrap .box .p-wrap p:after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media (max-width: 1199px) {
  #guideline-1 .wrap .box .p-wrap p {
    font-size: 1.4vw;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #guideline-1 .wrap .box .p-wrap p {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */