@charset "UTF-8";

/**/
/**/
/* すべてのページに適用される設定 */
/**/
html {
  font-size: 100%;
  font-family: "Noto Sans JP", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  overflow-x: hidden;
}

ul {
  display: flex;
  list-style: none;
}

li {
  list-style-position: inside;
  text-decoration: none;
}


p,
li,
td {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a:link {
  color: #1a1a1a;
  text-decoration: none;
}

a:visited {
  color: #1a1a1a;

}

a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

a:active {
  color: #1a1a1a;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/**/
/**/
/* 画面サイズが999px以下の時はPC用メニューは非表示 */
/**/
@media screen and (max-width: 999px) {
  .pc-menu {
    display: none;
  }

  .pc-catchcopy {
    display: none;
  }

  .pc-eigo {
    display: none;
  }
  .pc-logo {
    display: none;
  }
}

/**/
/**/
/* 画面サイズが1000px以上の時はスマホ用メニューは非表示 */
/**/
@media screen and (min-width: 1000px) {
  .sp-menu {
    display: none;
  }

  .sp-catchcopy {
    display: none;
  }

  .sp-eigo {
    display: none;
  }
  .sp-logo {
    display: none;
  }

}

/**/
/**/
/* すべてのページに適用　ーメインー */
main {
  margin: 0px 0px 0px 0px;

}

/**/
/**/
/* すべてのページに適用　ーヘッダーー */
/**/
header {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  /*メニューを右端に置く方法その１*/
  padding: 0 0;
  align-items: center;
  /*文字中央ぞろえ*/
  top: 0;
  /*ヘッダーの位置を固定（上0）*/
  left: 0;
  /*ヘッダーの位置を左固定（左０）*/
  height: 60px;
  /*ナビゲーションの幅*/
  position: fixed;
  /*固定位置に配置するため*/
  z-index: 10000;
  /*最上位レイヤーであることを示す*/

  box-shadow:
  0 0.2px 0.3px rgba(0, 0, 0, 0.017),
  0 0.4px 0.7px rgba(0, 0, 0, 0.024),
  0 0.6px 1.2px rgba(0, 0, 0, 0.03),
  0 1px 1.9px rgba(0, 0, 0, 0.035),
  0 1.5px 2.9px rgba(0, 0, 0, 0.04),
  0 2.4px 4.5px rgba(0, 0, 0, 0.046),
  0 4px 7.5px rgba(0, 0, 0, 0.053),
  0 8px 15px rgba(0, 0, 0, 0.07)
;
}

.sp-logo {
  text-align: left;
  height: auto;
  padding: 5px 5px 0px 5px;
  text-align: center;
  width: 200px;
}

.pc-logo {
  text-align: left;
  padding: 25px 5px 0px 5px;
  text-align: center;
  width: 200px;
}

/**/
/* ナビゲーション設定 */
/**/
nav {
  margin-left: auto;
  /*メニューを右端に置く方法その２*/
}

.main-menu {
  margin: 0 auto;
  display: flex;
  width: 1000px;

}

.logo {
  text-align: center;
  width: 200px;
}

.pc-menu {
  padding-top: 10px;
  width: 100%;
}

.pc-menu>ul {
  display: flex;
  list-style: none;
}

.pc-menu>ul>li {
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  width: 10%;
}

.pc-menu>ul>li>a {
  display: block;
  text-decoration: none;
  color: #000000;
  line-height: 60px;
}

.pc-menu>ul>li>a:hover {
  background: #cccccc;
}

.pc-menu__item {
  margin-left: 40px;
}

.pc-catchcopy {
  font-size: 3rem;
  letter-spacing: 0.4rem;
  margin: 10% 10% 7% 10%;
  font-weight: 600;
}

.sp-menu__box {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: #ffffff;
}

.sp-menu__box span,
.sp-menu__box span:before,
.sp-menu__box span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #444444;
  position: absolute;
}

.sp-menu__box span:before {
  bottom: 8px;
}

.sp-menu__box span:after {
  top: 8px;
}

#sp-menu__check {
  display: none;
}

#sp-menu__check:checked~.sp-menu__box span {
  background: rgba(255, 255, 255, 0);
}

#sp-menu__check:checked~.sp-menu__box span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#sp-menu__check:checked~.sp-menu__box span::after {
  top: 0;
  transform: rotate(-45deg);
}

#sp-menu__check:checked~.sp-menu__content {
  left: 0;
}

.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #ffffff;
  transition: all 0.5s;
}

.sp-menu__list {
  padding: 70px 10px 0;
}

.sp-menu__item {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}

.sp-catchcopy {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.3rem;
  margin: 30% 0% 30% 5%;
}

/**/
/**/
/* すべてのページに適用　ーフッターー */
/**/
.gotop {
  text-align: center;
}

.copyright {
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #253958;
  color: #fff;
  text-align: center;
}

/**/
/**/
/* h2の構成設定 */
/**/
h2 {
  margin: 0px 0px 20px 0px;
  color: #1a1a1a;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: bold;
}

.sabh2 {
  text-align: center;
  padding:60px 0px 0px 0px;
  font-size: 0.8rem;
}

/**/
/**/
/* TOPページに適用される設定 */
/**/

/**/
/* TOP画設定 */
/**/
.kasaneru {
  position: relative;
  /*親要素にrelative*/
  margin: 0 calc(50% - 50vw);
  width: calc(100vw - calc(100vw - 100%));

}

.nakami {
  /*About等トップページの各固まりをグルーピング*/
  padding: 0.5% 12% 5% 12%;
}

/**/
/* 1文字ずつ出てくるアニメーション */
/**/
.textanimation {
  display: flex;
  overflow: hidden;
}

.text1 {
  opacity: 0;
  animation: textanimation 0.7s forwards;

}

.text1:nth-child(1) {
  /* 1文字目 */
  animation-delay: 0.3s
}

.text1:nth-child(2) {
  /* 2文字目 */
  animation-delay: 0.6s
}

.text1:nth-child(3) {
  /* 3文字目 */
  animation-delay: 0.9s
}

.text1:nth-child(4) {
  /* 4文字目 */
  animation-delay: 1s
}


.text1:nth-child(5) {
  /* 5文字目 */
  animation-delay: 1.1s
}

.text1:nth-child(6) {
  /* 6文字目 */
  animation-delay: 1.2s
}

.text1:nth-child(7) {
  /* 7文字目 */
  animation-delay: 1.3s
}

.text1:nth-child(8) {
  /* 8文字目 */
  animation-delay: 1.4s
}

.text1:nth-child(9) {
  /* 9文字目 */
  animation-delay: 1.5s
}

.text1:nth-child(10) {
  /* 10文字目 */
  animation-delay: 1.6s
}

.textanimation2 {
  display: flex;
  overflow: hidden;
  padding: -10px 0px 0px 0px;
}

.text2 {
  opacity: 0;
  animation: textanimation 1.6s forwards;

}

.text2:nth-child(1) {
  /* 1文字目 */
  animation-delay: 1.8s
}

.text2:nth-child(2) {
  /* 2文字目 */
  animation-delay: 2.1s
}

.text2:nth-child(3) {
  /* 3文字目 */
  animation-delay: 2.4s
}

.text2:nth-child(4) {
  /* 4文字目 */
  animation-delay: 2.45s
}

.text2:nth-child(5) {
  /* 5文字目 */
  animation-delay: 2.5s
}

.text2:nth-child(6) {
  /* 6文字目 */
  animation-delay: 2.55s
}

.text2:nth-child(7) {
  /* 7文字目 */
  animation-delay: 2.6s
}

.text2:nth-child(8) {
  /* 8文字目 */
  animation-delay: 2.65s
}

.text2:nth-child(9) {
  /* 9文字目 */
  animation-delay: 2.7s
}

.text2:nth-child(10) {
  /* 10文字目 */
  animation-delay: 2.75s
}

@keyframes textanimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes textanimation2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 1文字ずつ出てくるアニメーションおわり */
/**/
/* キャッチコピーレイアウト */
/**/
.vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.yokoippai {
  width: 100vw;
  margin: 0 calc(50% - 50vw)
}

/* --- 文字BOX(子要素) ------------------ */

.eigo {
  position: relative;
  padding: 0
}

.over {
  position: absolute;
  /* 親要素からの絶対位置*/
  box-sizing: border-box;
  white-space: nowrap;
  /* 折返しなし */
  display: inline-block;
  /* 文字囲みのBOXにする */
  top: -30%;
  /* 親要素からの上位置 */
  left: 90%;
  /* 親要素からの左位置 */
  transform: translate(-80%, -0%);
  /* 文字BOXの位置ずらし */
}

.sp-eigo {
  font-size: 1.4rem;
  /* 文字サイズ */
  font-weight: bold;
  /* 太字 */
  line-height: 0.8em;
  /* 1行の高さ */
  color: rgba(173, 173, 173, 0.5);
  /* 文字色（透明度） */
}

.pc-eigo {
  font-size: 3rem;
  /* 文字サイズ */
  font-weight: bold;
  /* 太字 */
  line-height: 1em;
  /* 1行の高さ */
  color: rgba(173, 173, 173, 0.5);
  /* 文字色（透明度） */

}

/**/
/**/
/* トップページのAboutコーナー */
/**/
.about {
  background-color: #f2f9bf;

}

.suchi {
  font-weight: bolder;
  font-size: 1.3rem;
  margin-left: 0px;
}



.wari8 {
 width: 50%;
 margin: auto;
}

@media screen and (max-width: 999px) {
  .wari8 {
    width: 100%;
  }
}

/**/
/**/
/* トップページのCreatingtheFutureコーナー */
/**/
.CreatingtheFuture {
  /* width: 60%; */
  margin: 0 auto;
}

.container_1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 5%;
}

.card {
  box-shadow:
    0 0.2px 0.3px rgba(0, 0, 0, 0.017),
    0 0.4px 0.7px rgba(0, 0, 0, 0.024),
    0 0.6px 1.2px rgba(0, 0, 0, 0.03),
    0 1px 1.9px rgba(0, 0, 0, 0.035),
    0 1.5px 2.9px rgba(0, 0, 0, 0.04),
    0 2.4px 4.5px rgba(0, 0, 0, 0.046),
    0 4px 7.5px rgba(0, 0, 0, 0.053),
    0 8px 15px rgba(0, 0, 0, 0.07)
  ;
  border-radius: 7%;
  background-color: #fbffde;
  padding: 5%;
  margin: 3%;
}

.gazo_center {
  width: 60%;
  margin: auto;
}

.card__content {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1c1b1b;
  padding: 0.8rem;
}


/* 　フッター */
.footer {
background-color: hsl(51, 100%, 52%);
}

/* 　archive.php */
.entry {
  list-style: none;
}

.topic_container {
  
  gap: 1rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 5%;
}


.sticky_note {
  box-shadow: 0 0px 20px rgba(0,0,0,0.2);
  background-color: #ffffff;
  padding: 5%;
  /* white-space: nowrap; */
  margin: 3%;
  height: 400px;
}






@media (max-width: 999px) {
  /* 横幅が999px以下の場合に適用するスタイル */

.kizigazo {
    width: 300px;
    height: 200px;
    object-fit: cover;
  }
}
@media (min-width: 1000px) {
  /* 横幅が1000px以上の場合に適用するスタイル */
.rightfloat {
    float: right;
  }
.about-parts {
  padding-top: 400px;
}


.kizigazo {
    width: 300px;
    height: 200px;
    object-fit: cover;
    float: left;
  }
}







.kizititle {
  /* white-space: pre-wrap; */
  width: max-content;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1c1b1b;
  padding: 0.8rem;
}


/* .rayou_sticky_note {
  width: auto;
  text-align: left;
} */

.gazo_left {
  text-align: left;
  display: flex;
}

.topic_image {
  width: 150px;
  background-color: #fff;
  white-space: nowrap;
}

.topic_image2 {
  width: 200px!important;
  height: auto;
    object-fit: scale-down!important;
}


.post-categories {
  white-space: nowrap;
  text-align: right;
}


.entry__time ,
.orikaeshi_none {
  text-align: right;
  font-size: 0.8rem;
}


/* 　記事1件1件のレイアウト */

.container {
  padding: 0.5% 12% 5% 12%;
  letter-spacing: 0.05rem;
  margin:0 auto;
  margin-top: 130px;
}

.single_post_container {
  padding: 0% 0.5% 5% 0.5%;
  margin:0 auto;
  letter-spacing: 0.05rem;
}



.post_time {
  text-align: left;
  font-size: 1rem;
  font-weight: bolder;
  letter-spacing: 10%;
  line-height:1;
  padding: 5px 5px 10px 5px;
  background: linear-gradient(transparent 40%, #ecff5d 100%);
  display:inline-block;
}

.post_category {
  padding: 0px 0px 0px 10px;
  font-size: 0.8rem;
  display:inline-block;
}




.single_ttl {
  font-size: 1.8rem;
  padding: 0px 0px 15px 0px;
}

.single_thumb {
  text-align: center;
  background-color: #FFF;
  border-radius: 3px;
  box-shadow: 0 0px 20px rgba(0,0,0,0.2);
  padding:30px;
}

.post_body {
  padding: 40px 0px 0px 0px;
}

.lefting_font {
  text-align: left;
}

/* 　記事一覧のレイアウト */
/* 共通 */
.changeCard ul {
  padding: 0;
  list-style: none;
  border: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
}
.changeItemTxt {
  width: 62%;
}
.changeItemTxt p.itemTitle {
  font-size: 1.1rem;
  line-height: 1.56;
  margin: 0;
  font-weight: bold;
  color: #313131;
  margin-bottom: 10px;
}
.changeItemTxt ul.itemTag {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.changeItemTxt ul.itemTag li {
  background: #f1f1f1;
  color: #707070;
  font-size: 0.7rem;
  padding: 2px 10px;
  position: relative;
}
.changeItemTxt ul.itemTag li:before {
  padding-right: 3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1em;
  content: "\f02b";
  vertical-align: baseline;
  color: #aaa;
}
p.itemCat {
  position: absolute;
  left: 22px;
  top: 22px;
  background: #6bb6ff;
  color: #FFF;
  border-radius: 9999px;
  font-size: 0.7rem;
  display: inline-block;
  padding: 1px 12px 0px;
  z-index: 2;
}
/* 共通ここまで */

/* 水平のカード */
li.changeItem.gridVertical {
  margin-bottom: 15px;
}
li.changeItem.gridVertical a {
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: 0;
  padding-right: 20px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
   position: relative;
}
li.changeItem.gridVertical a:hover {
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
  transform: translateY(-4px);
}
li.changeItem.gridVertical a p.itemCat {
  top: 10px;
  left: 10px;
}
li.changeItem.gridVertical a img {
  width: 44%;
  border-radius: 2px 0 0 2px;
  margin-right: 3%;
}
li.changeItem.gridVertical a .changeItemTxt {
  width: 53%;
}
@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
li.changeItem.gridVertical {
  margin-bottom: 10px;
  width: 100%;
}
li.changeItem.gridVertical a {
  padding: 8px;
}
li.changeItem.gridVertical a .itemCat, li.changeItem.gridVertical a .changeItemTxt time, li.changeItem.gridVertical a .changeItemTxt .itemTag {
  display: none;
}
li.changeItem.gridVertical a img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 10px;
}
li.changeItem.gridVertical a .changeItemTxt {
  width: calc(100% - 100px);
  margin: 0;
}
li.changeItem.gridVertical a .changeItemTxt .itemTitle {
  font-size: 1rem;
  margin: 0;
}
}

/**/
/* お問い合わせフォーム */
/**/
/* #form {
  display: none;
} */


#form-parts {
  text-align: center;
  margin: auto;
}

#button {
padding : 5px;
margin: 10px;
border: none;
text-align: left;
background-color: #fff;
}

label {
  text-align: left;
}

submit {
  margin: auto;
}