@charset "UTF-8";
/*
Theme Name: omoka
*/

/* 全体の設定 */
html {
  scroll-behavior: smooth;
  /* スムーズスクロール */
}

section,
.footer_content {
  margin: 0 auto;
  /* コンテンツ中央揃え */
}

.content_width {
  max-width: 1000px;
  /* コンテンツ幅1000px */
  padding: 80px 24px;
  /* 横幅の最大値から24pxパディングをとってあげる */
}

@media (max-width: 1200px) {
  .content_width {
    padding: 80px;
  }
}

@media (max-width: 576px) {
  .content_width {
    padding: 56px 40px;
  }
}

.heading .en {
  font-family: agenda, sans-serif;
  font-size: 40px;
  line-height: 1;
  padding-top: 40px;
  /* 背景画像入れるため */
  position: relative;
}

.heading {
  text-align: center;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .heading {
    margin-bottom: 56px;
  }
}

.heading .en span {
  padding: 40px;
  background-repeat: no-repeat;
}

.heading .en {
  /* .jp_heading { */
  position: relative;
  padding-bottom: 50px;
}

.heading .en::after {
  /* .jp_heading::after { */
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  /* degで角度指定 */
  width: 1px;
  height: 30px;
  background-color: #3a3937;
}

/* Loading画面 */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading img,
.loading-animation img {
  width: 20%;
}

@media (max-width: 768px) {
  .loading img,
  .loading-animation img {
    width: 35%;
  }
}

@media (max-width: 576px) {
  .loading img,
  .loading-animation img {
    width: 60%;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ボタン */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128px;
  padding: 16px 32px;
  border-radius: 50vh;
  position: relative;
  transition: all 0.4s ease-out;
  /*アニメーションの指定*/
}

.btn_center {
  margin: 0 auto;
}

.btn_mocha {
  background-color: #e3dec2;
}

.btn_orange {
  background-color: #d8a380;
}

.btn_mocha.btn_reverse::after,
.btn_orange.btn_reverse::after {
  transform: rotate(-135deg);
  left: 25px;
}

.btn_mocha::after,
.btn_orange::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #3a3937;
  border-right: 1px solid #3a3937;
  transform: rotate(45deg);
  position: absolute;
  /* ボタンの矢印を右に寄せる */
  right: 25px;
}

.btn_mocha:hover,
.btn_orange:hover,
.btn_contact:hover,
.btn_submit:hover {
  /* hoverした際、グラデーションと影を付ける */
  border-color: transparent;
  background: linear-gradient(270deg, #d8a380 0%, #ffe140 50%, #d8a380 100%);
  background-size: 200% auto;
  background-position: right center;
  box-shadow: 0 5px 10px rgba(255, 163, 115, 0.4);
}

/* ヘッダー */
.header_logo {
  display: flex;
  align-items: end;
  font-size: 10px;
  padding: 10px 0;
}

.header_logo a {
  width: 110px;
}

.header_logo p {
  margin-left: 32px;
  line-height: 1;
}

.header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 5%;
  /* widthの外側に余白 */
  box-sizing: border-box;
  /* paddingをとってwidthが100%なのでヘッダーとnavが内側に表示されるようにする（paddingとborderを幅と高さに含める） */
  position: fixed;
}

@media (max-width: 768px) {
  .pc_nav {
    display: none;
  }
}

.pc_nav ul {
  display: flex;
  align-items: center;
  text-align: center;
}

.pc_nav ul li a {
  display: block;
  font-family: agenda, sans-serif;
  width: 80px;
  margin-right: 40px;
}

.pc_nav ul li:last-child a {
  margin-right: 0;
}

.btn_contact {
  width: 50%;
  border-radius: 50vh;
  background-color: #d8a380;
  padding: 8px 12px;
  transition: all 0.4s ease-out;
}

@media (max-width: 768px) {
  .btn_contact {
    width: 60%;
    margin: 0;
    margin: 0 auto;
  }
}

.btn_menu {
  display: none;
}

@media (max-width: 768px) {
  .btn_menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 5%;
    cursor: pointer;
    height: 30px;
    z-index: 100;
  }
}

@media (max-width: 768px) {
  .btn_menu span {
    display: block;
    background: #3a3937;
    width: 32px;
    height: 1px;
    border-radius: 1px;
    position: relative;
    top: 15px;
    transition: 0.3s;
  }
  .btn_menu span::before,
  .btn_menu span::after {
    content: "";
    display: block;
    background: #3a3937;
    width: 32px;
    height: 1px;
    border-radius: 1px;
    position: absolute;
    transition: 0.3s;
  }
  .btn_menu span::before {
    bottom: 5px;
  }
  .btn_menu span::after {
    top: 5px;
  }
}

.sp_nav {
  display: none;
}

@media (max-width: 768px) {
  .open {
    z-index: 100;
  }
}

@media (max-width: 768px) {
  .open span {
    background: transparent;
    /* 親に準ずる 透明 */
    color: #fff;
  }
  .open span::before {
    bottom: 0;
    /* 真ん中に集まってくる */
    transform: rotate(45deg);
    /* 45度回転 */
    background-color: #3a3937;
  }
  .open span::after {
    top: 0;
    /* 真ん中に集まってくる */
    transform: rotate(135deg);
    /* 135度回転 */
    background-color: #3a3937;
  }
}

@media (max-width: 768px) {
  .sp_nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    /* 画面いっぱいに */
    width: 100%;
    background: #e3dec2;
    z-index: 50;
  }
  .sp_nav ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 縦揃え */
    justify-content: center;
    padding: 24px;
  }
  .sp_nav li a {
    color: #3a3937;
    padding: 32px 0;
    text-align: center;
    display: block;
    font-family: agenda, sans-serif;
    font-size: 20px;
  }
}

/* メインビジュアル */
.main_visual {
  background: rgba(227, 222, 194, 0.5);
  height: 100vh;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  /* fv_circleの拡大を切り取り */
}

.fv_circle {
  /* 波紋の基点 */
  position: relative;
  background-image: radial-gradient(circle, #ffffff 0% 60%, rgba(227, 222, 194, 0) 70% 100%);
  width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 992px) {
  .fv_circle {
    width: 550px;
    height: 550px;
  }
}

@media (max-width: 768px) {
  .fv_circle {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 576px) {
  .fv_circle {
    width: 400px;
    height: 400px;
  }
}

/* 波形を2つ設定 */
.fv_circle::after,
.fv_circle::before {
  content: "";
  /* 波形の位置 */
  position: absolute;
  left: -25%;
  top: -25%;
  border: 1px solid #c4ba7f;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /* はじめは不透明 */
  opacity: 1;
  animation: 2.5s circleanime linear infinite;
}

/* 波形の2つ目は0.5秒遅らせてアニメーション */
.fv_circle::before {
  animation-delay: 0.5s;
}

/* 波形のアニメーション */
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.main_message {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .main_message {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .main_message {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .main_message {
    font-size: 18px;
  }
}

.main_message .font_large {
  font-size: 40px;
}

@media (max-width: 992px) {
  .main_message .font_large {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .main_message .font_large {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .main_message .font_large {
    font-size: 23px;
  }
}

.main_message .font_emphasis {
  background-repeat: no-repeat;
  display: inline-block;
}

.circle {
  background-image: url("img/ka.png");
  background-position: 50% 7%;
}

.triangle {
  background-image: url("img/ta.png");
  background-position: 50% 5%;
}

.square {
  background-image: url("img/chi.png");
  background-position: 50% 5%;
}

@media (max-width: 992px) {
  .circle,
  .triangle,
  .square {
    padding-top: 3px;
  }
}

@media (max-width: 768px) {
  .circle,
  .triangle,
  .square {
    padding-top: 5px;
  }
}

/*スクロールダウン*/
.scroll_down {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
}

.scroll_down span {
  /* Scrollテキストの描写 */
  position: absolute;
  left: -15px;
  top: -15px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.scroll_down::after {
  /* 線の描写 */
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #c4ba7f;
  animation: pathmove 2.5s ease-in-out infinite;
  /* 1.4秒かけて動く */
  opacity: 0;
}

@keyframes pathmove {
  /* 高さ・位置・透過が変化して線が上から下に動く */
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/* Service */
.service_heading span {
  background-image: url("img/service.png");
  background-position: 6% 36%;
}

.service_list {
  display: flex;
  justify-content: space-between;
  gap: 8%;
  /* gap80px/幅1000px */
  text-align: center;
}

@media (max-width: 768px) {
  .service_list {
    display: block;
  }
}

.service_item {
  flex: 1;
  /* コンテンツの幅を均等にする */
}

.service_item:nth-child(2) {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .service_item {
    display: block;
  }
  .service_item:nth-child(2) {
    margin-bottom: 40px;
  }
}

.service_num {
  font-size: 20px;
  display: inline-block;
  border-bottom: 1px solid #3a3937;
  margin-bottom: 24px;
}

.service_title {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.service_desc {
  text-align: left;
  /* コンテンツ左揃え */
}

/* Works_list */
.works_heading span {
  background-image: url("img/works.png");
  background-position: 50% 10%;
}

.works_grid {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 80px;
}

/* 制作実績画像ホバー時にconcept表示 */
.works_item {
  position: relative;
}

.works_item span.mask {
  position: relative;
  transition: 0.3s ease-in-out;
  display: block;
  line-height: 0;
}

.works_item:hover span.mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ホバーしたときの背景色 */
  background: rgba(239, 238, 233, 0.9);
}

.works_item span.mask img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.works_item:hover span.cap {
  opacity: 1;
}

.works_item:hover .img {
  opacity: 0.6;
}

.works_item .img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.works_item span.cap {
  opacity: 0;
  transition: 0.3s ease-in-out;
  position: absolute;
  z-index: 3;
  /* テキストを前面に出す */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #3a3937;
  line-height: 1.5;
}

.category {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.category::before {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #3a3937;
  margin-right: 16px;
}

/* Works */
.company {
  padding-left: 8px;
  font-size: 18px;
}

.url {
  padding-left: 8px;
  text-decoration: underline;
  margin-bottom: 56px;
}

.url:hover {
  color: #d8a380;
}

.works {
  text-align: left;
  margin-top: 24px;
}

.point,
.outline,
.capture {
  margin-bottom: 56px;
}

.works h3 {
  font-size: 24px;
  font-weight: 700;
  padding: 0 8px;
  border-bottom: 1px solid #3a3937;
}

@media (max-width: 768px) {
  .works h3 {
    font-size: 20px;
  }
}

.works h4 {
  font-size: 20px;
  padding: 0 8px;
  border-bottom: 1px solid #3a3937;
}

.capture p {
  padding: 8px;
}

.outline dl {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .outline dl {
    font-size: 15px;
  }
}

.outline dt {
  font-weight: 700;
  width: 25%;
  padding: 16px 8px;
  border-bottom: 1px solid #d9d9d9;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .outline dt {
    width: 30%;
  }
}

.outline dd {
  width: 75%;
  padding: 16px 8px;
  border-bottom: 1px solid #d9d9d9;
  margin: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .outline dd {
    width: 70%;
  }
}

/* About */
#about {
  margin-bottom: 160px;
}

@media (max-width: 768px) {
  #about {
    margin-bottom: 80px;
  }
}

.about_heading span {
  background-image: url("img/about.png");
  background-position: 60% 30%;
}

.top_about_background {
  position: relative;
}

.top_about_circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 520px;
}

@media (max-width: 1200px) {
  .top_about_circle {
    width: 75%;
    height: 500px;
  }
}

@media (max-width: 992px) {
  .top_about_circle {
    height: 550px;
  }
}

@media (max-width: 768px) {
  .top_about_circle {
    top: 80px;
    right: 0;
    width: 200%;
  }
}

/* 10秒アニメーションをループ */
.about_circle {
  background: rgba(227, 222, 194, 0.3);
  animation: warp 8s linear infinite;
}

@media (max-width: 768px) {
  .about_circle {
    animation: warp 5s linear infinite;
  }
}

@keyframes warp {
  0% {
    border-radius: 50% 60% 50% 60% / 50% 50% 60% 70%;
  }
  25% {
    border-radius: 60% 50% 50% 70% / 60% 60% 50% 70%;
  }
  50% {
    border-radius: 50% 60% 50% 50% / 60% 50% 60% 50%;
  }
  75% {
    border-radius: 60% 60% 50% 60% / 60% 50% 60% 50%;
  }
  100% {
    border-radius: 70% 50% 60% 50% / 50% 60% 50% 50%;
  }
}

.top_about_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 80px;
}

.top_about_content img {
  width: 35%;
  border-radius: 5px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .top_about_content img {
    width: 75%;
    z-index: 100;
  }
}

.top_about_content .title {
  font-weight: 700;
}

.top_about_content .message {
  margin: 24px 0 56px;
}

@media (max-width: 768px) {
  .top_about_content {
    display: block;
    top: 0;
  }
}

.top_about_text {
  text-align: left;
  padding: 40px 96px;
}

.top_about_text .name {
  font-size: 45px;
  font-family: "adobe handwriting ernie", sans-serif;
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  .top_about_text {
    padding: 40px 64px;
  }
}

@media (max-width: 768px) {
  .top_about_text {
    padding: 40px 0;
  }
  .top_about_text p {
    text-align: left;
  }
}

/* About 詳細ページ */
.about_detail {
  margin: 80px 0;
}

@media (max-width: 768px) {
  .about_detail {
    margin-bottom: 40px;
  }
}

.about_message {
  max-width: 1000px;
  /* コンテンツ幅1000px */
  padding: 0 24px;
  /* 横幅の最大値から24pxパディングをとってあげる */
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .about_message {
    padding: 0 80px;
  }
}

@media (max-width: 768px) {
  .about_message {
    height: 580px;
    position: relative;
    overflow-x: hidden;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .about_message {
    height: 720px;
  }
}

@media (max-width: 768px) {
  .about_message .about_circle {
    width: 1000px;
    margin-left: -500px;
    position: absolute;
    left: 50%;
  }
}

@media (max-width: 768px) {
  .about_message .content_width {
    padding: 0;
  }
}

.thumbnail img {
  width: 100%;
  height: auto;
}

.introduction {
  padding: 128px 184px 96px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .introduction {
    padding: 128px 128px 96px;
  }
}

@media (max-width: 768px) {
  .introduction {
    width: 85vw;
    padding: 120px;
    margin: 0 auto;
  }
}

.introduction p {
  margin-bottom: 24px;
}

.info {
  max-width: 1000px;
  /* コンテンツ幅1000px */
  padding: 0 24px;
  /* 横幅の最大値から24pxパディングをとってあげる */
  margin: 80px auto;
  display: flex;
  align-items: start;
  gap: 8%;
  text-align: left;
}

@media (max-width: 1200px) {
  .info {
    padding: 0 80px;
  }
}

@media (max-width: 768px) {
  .info {
    text-align: center;
    display: block;
    font-size: 15px;
    padding: 0 40px;
  }
}

.info img {
  width: 35%;
  border-radius: 5px;
  opacity: 0.8;
  box-shadow: 16px -16px 0 rgba(216, 163, 128, 0.7);
}

@media (max-width: 768px) {
  .info img {
    width: 75%;
    z-index: 100;
    box-shadow: 16px 16px 0 rgba(216, 163, 128, 0.7);
    margin-bottom: 64px;
  }
}

.info dl {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .info dl {
    text-align: left;
  }
}

.info dt {
  font-weight: 700;
  width: 20%;
  padding: 24px 16px;
  border-top: 1px solid #d9d9d9;
}

.info dt:first-child {
  border: none;
  padding-top: 0;
}

.info dt:first-child + dd {
  border: none;
  padding-top: 0;
}

@media (max-width: 768px) {
  .info dt {
    width: 23%;
    padding: 16px 8px;
  }
}

.info dd {
  width: 68%;
  padding: 24px 16px;
  border-top: 1px solid #d9d9d9;
  margin: 0;
}

.info dd p {
  margin-bottom: 24px;
}

.info dd p:last-child {
  margin: 0;
}

@media (max-width: 1200px) {
  .info dd {
    width: 61%;
  }
}

@media (max-width: 768px) {
  .info dd {
    padding: 16px 8px;
  }
}

.capture p {
  margin-bottom: 48px;
}

.instagram a {
  text-decoration: underline;
}

.instagram a:hover {
  background: -webkit-linear-gradient(left, #ffa915, #f1224d, #b039db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact */
#contact {
  background: linear-gradient(to top, #fff -2%, #e3dec2 100%);
  padding: 80px 24px;
}

@media (max-width: 1200px) {
  #contact {
    padding: 80px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 56px 80px;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 56px 40px;
  }
}

.contact_content {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.contact_heading span {
  background-image: url("img/contact.png");
  background-position: 87% 60%;
}

.contact_text {
  padding: 0 30px;
  margin-bottom: 56px;
}

.contact_text a {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact_text {
    text-align: left;
  }
}

.form_item {
  display: flex;
  text-align: left;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .form_item {
    display: block;
  }
}

.form_item label {
  width: 55%;
}

.form_item label span {
  font-size: 10px;
  background-color: #d7a28e;
  color: #fff;
  padding: 4px 8px;
  margin-left: 8px;
  border-radius: 50vh;
}

/* 入力欄 */
.form_item .input {
  width: 100%;
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 8px 16px;
  margin-top: 8px;
  border: 1px solid #fff;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
}

input[type="submit"] {
  border-style: none;
  background-color: #d8a380;
  color: #3a3937;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 16px;
  width: 184px;
  cursor: pointer;
  /* iOSのデフォルトのスタイルをリセット */
  appearance: none;
  -webkit-appearance: none;
}

/* バリデーション */
.wpcf7-not-valid-tip {
  color: #d7a28e;
  font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
}

/* スピナー */
.wpcf7-spinner {
  background-color: #d7a28e;
}

/* サンクスページ */
.thanks {
  text-align: center;
  box-sizing: border-box;
  padding: 80px;
  margin-top: 56px;
  height: 100vh;
}

@media (max-width: 576px) {
  .thanks {
    text-align: left;
  }
}

.thanks p {
  margin-top: 24px;
  font-size: 14px;
}

.thanks .btn {
  margin: 0 auto;
}

/* フッター */
.footer {
  width: 100%;
  background: linear-gradient(to bottom, #fff 50%, #e3dec2 100%);
}

.footer_content {
  max-width: 1000px;
  padding: 80px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1200px) {
  .footer_content {
    display: block;
    text-align: center;
    padding: 64px;
  }
}

@media (max-width: 576px) {
  .footer_content {
    padding: 64px 30px;
  }
}

.footer_nav ul {
  display: flex;
  align-items: center;
  text-align: center;
}

.footer_nav ul li a {
  display: block;
  font-family: agenda, sans-serif;
  /* width: 80px; */
  margin: 0 20px;
}

.pc_sns a {
  margin: 0;
}

@media (max-width: 1200px) {
  .footer_nav ul {
    justify-content: center;
    margin-bottom: 32px;
  }
}

@media (max-width: 576px) {
  .footer_nav .footer_list {
    display: none;
  }
}

.copy_right {
  font-size: 10px;
}

@media (min-width: 1201px) {
  .sp_sns {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .pc_sns {
    display: none !important;
  }
}

/* アニメーション */
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  animation-delay: 0.5s;
}

.delay-time01 {
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .delay-time01 {
    animation-delay: 0s;
  }
}

.delay-time02 {
  animation-delay: 1s;
}

.delay-time03 {
  animation-delay: 1.6s;
}

@media (max-width: 768px) {
  .delay-time03 {
    animation-delay: 0s;
  }
}

.delay-time04 {
  animation-delay: 2.5s;
}

/* 1文字ずつ出現させるためのCSS */
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ========================================================
# 20250213 コラム追加
======================================================== */
/* 2カラム幅 */
.content_width.-col2 {
  max-width: 1228px;
}
@media (max-width: 768px) {
  .content_width.-col2 {
    max-width: 100%;
    padding: 72px 20px;
  }
}

/* 2カラムレイアウト */
.col2 {
  margin-top: 100px;
  display: flex;
  gap: calc(80 / 1228 * 100%);
}
.col2_body {
  width: calc(780 / 1228 * 100%);
}
.col2_sidebar {
  width: calc(320 / 1228 * 100%);
}

@media (max-width: 900px) {
  .col2 {
    margin-top: 50px;
    display: block;
  }
  .col2_body {
    width: 100%;
  }
  .col2_sidebar {
    width: 100%;
    margin-top: 80px;
  }
}

/* コラム一覧 */
.column_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 72px 60px;
}
.column_list:nth-child(n + 2) {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .column_list {
    gap: 50px 30px;
  }
}

/* カテゴリタイトル */
.category_heading {
  font-size: 18px;
  line-height: calc(32 / 18);
  font-weight: bold;
}

/* コラムカード */
.columnCard a {
  display: block;
}
.columnCard_thumb img {
  aspect-ratio: 360 / 240;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.columnCard_content {
  margin-top: 24px;
}
.columnCard_meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.columnCard_meta time {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
}
.columnCard_category {
  font-size: 12px;
  line-height: calc(16.8 / 12);
  background: #d7a28e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 100vmax;
  letter-spacing: 0;
  min-width: 70px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  box-sizing: border-box;
}
.columnCard_title {
  margin-top: 12px;
  font-weight: bold;
  font-size: 20px;
  line-height: calc(36 / 20);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.columnCard_excerpt {
  margin-top: 12px;
  font-size: 14px;
  line-height: calc(21 / 14);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ページネーション */
.pagination {
  margin-top: 100px;
}
.pagination > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-weight: bold;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}
.page-numbers .page-numbers.current {
  border: 1px solid #3a3937;
}
.page-numbers.prev,
.page-numbers.next {
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #3a3937;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 50px;
  }
  .pagination > .page-numbers {
    gap: 4px;
  }
  .page-numbers .page-numbers {
    width: 36px;
    height: 36px;
    padding-left: 2px;
  }
}

/* サイドバー */
.sidebar_box:nth-child(n + 2) {
  margin-top: 80px;
}
.sidebar_heading {
  font-size: 18px;
  line-height: calc(32 / 18);
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 1px solid #3a3937;
}
.sidebar_list {
  margin-top: 8px;
}
.sidebar_item:not(:first-child) {
  border-top: 1px solid #eeeeee;
}
.sidebar_item a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: calc(26 / 16);
}
.sidebar_item a::before {
  content: "";
  display: block;
  background: url(./img/common/icon_arrow.svg) no-repeat center center / contain;
  width: 6px;
  height: 9px;
}
.sidebar_banner_list {
  margin-top: 24px;
}
.sidebar_banner:nth-child(n + 2) {
  margin-top: 30px;
}
.sidebar_banner a {
  display: block;
}
.sidebar_banner img {
  width: 100%;
  height: auto;
}
.sidebar_banner p {
  font-size: 16px;
  font-weight: bold;
  line-height: calc(26 / 16);
  margin-top: 8px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .sidebar_box:nth-child(n + 2) {
    margin-top: 50px;
  }
}

/* article */
.article_meta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.article_date {
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}
.article_categoryList {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article_category {
  font-size: 14px;
  line-height: calc(21 / 14);
  background: #d7a28e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 100vmax;
  font-weight: bold;
}
.article_title {
  font-size: 32px;
  line-height: calc(51 / 32);
  font-weight: bold;
  margin-top: 24px;
}
.article_thumb {
  margin-top: 24px;
}
.article_thumb img {
  width: 100%;
  height: auto;
}
.article_content {
  margin-top: 24px;
}
.article_content > * {
  margin: 16px 0;
  max-width: 100%;
}
.article_content h2 {
  margin: 40px 0 16px;
  font-weight: bold;
  font-size: 24px;
  line-height: calc(43 / 24);
  padding-bottom: 12px;
  border-bottom: 2px solid #D8A380;
}
.article_content h3 {
  margin: 40px 0 16px;
  font-weight: bold;
  font-size: 18px;
  line-height: calc(32 / 18);
  padding-left: 16px;
  position: relative;
}
.article_content h3::before {
  content: "";
  display: block;
  width: 2px;
  border-radius: 100vmax;
  height: calc(100% - 14px);
  background: #D8A380;
  position: absolute;
  left: 0;
  top: 7px;
}
.article_content p {
  margin: 16px 0;
}
.article_content pre {
  overflow: auto;
}
.article_content ul {
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}
.article_content .has-inline-color {
  background-size: 100% 50%;
}
.article_btn {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .article_btn {
    margin-top: 50px;
  }
}
