@charset "UTF-8";
/* CSS Document */

/*------------------共通部分----------------------*/
:root {
  --main_color: #007acc;
  --sub_color: #00b88a;
  --font: "Shippori Mincho", serif;
  --bg_color: #fff;
  --text_color: #333;
  --section_space: clamp(40px, 5vw, 100px);
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text_color);
  font-size: clamp(14px, 2vw, 18px);
  background: var(--bg_color);
  -webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.9;
}

/*---------------------アクセシビリティ--------------------------------*/
/*----キーボードのみ操作に配慮 フォーカスするように---------*/
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--main_color);
  outline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none; /* マウスクリック時は表示しない */
}

/*------------キーボード操作に配慮end---------------------*/
/*-------OSのダークモードに対応------*/
@media (prefers-color-scheme: dark) {
  :root {
    --bg_color: #121212;
    --text_color: #f1f1f1;
  }
}
/*-------スクリーンリーダー対応 アイコンなどの読み上げされない物につける------*/
.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* 使用例<span class="visually_hidden">メニューを開く</span> */

/*------------動きを減らす設定向け-------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important; /*CSSアニメーションOFF*/
    transition: none !important; /*ホバーや遷移OFF*/
    scroll-behavior: auto !important; /*スムーススクロールOFF*/
  }
}

/*---------------------アクセシビリティ end--------------------------------*/

p {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 5px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: #333;
  transition: 0.4s;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
svg {
  padding: 0;
  margin: 0;
  vertical-align: bottom;
}
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: 0.4s;
}

.img img {
  display: block;
  width: 100%;
}
.img a {
  display: block;
  width: 100%;
}
.img a:hover img {
  opacity: 0.8;
}
.logo img {
  pointer-events: none;
}

.inner {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner.wide {
  max-width: 1400px;
}
.inner.max {
  max-width: none;
}

span.red {
  color: #f05742;
}

/*------------Glightbox装飾-----------------*/
/* タイトルのスタイル */
.glightbox-clean .gtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5em;
  text-align: center;
}

/* 説明文（キャプション）のスタイル */
.glightbox-clean .gdesc {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  text-align: center;
}

/*------------共通部分end-----------------*/

/*===ヘッダー==============================*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.6s;
  padding: 15px 0;
}
.site_header .inner {
  /*	background-color: rgba(36,133,203,0.79);*/
  max-width: none;
}

.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site_header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.site_header h1 {
  /*	width: 35%;*/
  transition: 0.6s;
  font-size: 1.5rem;
  letter-spacing: 0.2em;

  /*
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
*/
}
.logo {
  position: relative;
}
.logo_wh {
}
.logo_bk {
  opacity: 0;
}
.site_header h1 a {
  display: flex;
  color: #333;
  align-items: center;
  gap: 20px;

  /*	width: 50%;*/
}
.site_header h1 a img {
  display: block;
  width: 100px;
  transition: 0.4s;
}
.site_header h1 a:hover img {
  opacity: 0.6;
}

.site_header .info {
  /*
	position: absolute;
	top:27%;
	right:5%;
*/
}
.site_header .tr {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 5px;
}
.site_header .tr .sbtn {
  margin: 0;
  margin-left: 20px;
  width: 200px;
}
.site_header .tr .sbtn a {
  padding: 10px 0;
  line-height: normal;
}

@media (max-width: 1200px) {
  .site_header h1 {
    width: 40%;
  }
}

@media (max-width: 960px) {
  .site_header h1 a img {
    width: 50px;
  }
}

/*---------------global_nav----------------*/
.global_nav {
  width: 100%;
  height: 50px;
  padding-top: 10px;
}
.global_nav ul {
  margin: 0 0 0 auto;
  display: flex;
  justify-content: right;
  width: -moz-fit-content;
  width: fit-content;
}
.global_nav ul li {
  margin-left: 40px;
  transition: 0.4s;
  height: 0;
}
.global_nav ul li a {
  display: block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  color: #333;
  position: relative;
}
.global_nav ul li a span {
  display: block;
  font-size: 0.8rem;
  color: #333;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
}
.global_nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  margin: 5px auto;
  transition: all 0.2s ease-in;
}
.global_nav ul li:hover a::after {
  width: 50px;
}
@media (max-width: 1200px) {
  .global_nav ul li {
    margin-left: 20px;
  }
  .global_nav ul li a {
    font-size: 0.8rem;
  }
}
@media (max-width: 960px) {
  .site_header .info {
    display: none;
  }
}
/*---------------ヘッダー変化----------------*/

.site_header.transform_header {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 960px) {
  .site_header.transform_header {
    padding: 10px 0;
  }
  .site_header h1 {
    width: 85%;
    font-size: 1.2rem;
  }
}
/*
.site_header.transform_header h1 a{
	color:#fff;
}
.transform_header .global_nav{
	padding-bottom: 30px;
}
.transform_header .global_nav ul li a{
	color:#fff;
}

.transform_header .global_nav ul li a span{
	color:#fff;
}

.transform_header .global_nav ul li a::after{
	background: #fff;
}

.transform_header .sbtn a{
	color:#fff;
	border: 1px solid #fff;
}
.transform_header .sbtn a:hover{
	background: #fff;
	color: #333;
}
.transform_header .insta_btn{
	color: #fff;
	border: 1px solid #fff;
}
.transform_header .insta_btn:hover{
	color:#333;
	background: #fff;
	border: none;
}
*/

/*---------装飾 背景-----------*/

.bg_black {
  background: #1d1d1d;
}

.bg_gray {
  background: #eee;
}

.bg_blue {
  background: #b3e4ff;
}
.bg_main {
  background: #f9f9f9;
}

.illust001 {
  background: url("../img/illust001.svg");
  background-repeat: no-repeat;
  width: 30%;
  bottom: 0;
  aspect-ratio: 4 / 3;
  position: absolute;
  opacity: 0.7;
}

.bg_flame01 {
  border-radius: 47% 53% 38% 62% / 41% 44% 56% 59%;
  width: 100%;
  height: 100%;
}

.bg01 {
  background: url("../img/bg01.jpg");
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.bg01:before {
  content: "";
  background: inherit;
  filter: brightness(60%) contrast(120%) grayscale(100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.bg01::after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

/*-----背景右寄-----*/
.bg_right {
  width: 80%;
  height: 70%;
  position: absolute;
  right: 5%;
  bottom: 0;
  border-radius: 50px;
  z-index: -1;
}
/*-----背景左寄-----*/
.bg_left {
  width: 80%;
  height: 40%;
  position: absolute;
  left: 0;
  top: 5%;
  border-radius: 10px;
  z-index: -1;
}

/*-----背景上寄-----*/
.bg_top {
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0;
  z-index: -1;
}
/*-----背景下寄-----*/
.bg_bottom {
  width: 100%;
  height: 250px;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

/*--------------------imgフレーム imgタグにつける-----------------------*/
.photo_flame01 {
  width: 100%;
  object-fit: cover;
  border-radius: 29% 71% 24% 76% / 59% 31% 69% 41%;
}

.photo_flame02 {
  width: 100%;
  object-fit: cover;
  border-radius: 84% 16% 70% 30% / 50% 50% 50% 50%;
}

/*--------------------SVGフレーム-----------------------*/

.deco001 {
  overflow: hidden;
  position: relative;
  height: 100px;
}
.deco001::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 57px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fff0f8"/></svg>');
}

/*
@media (min-width:768px){
.deco001::before{
background-size: 100% 83px;
background-position: 50% 0%;   
}  
}
*/

@media (min-width: 1025px) {
  .deco001::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 83px;
    background-position: 50% 0%;
  }
}
@media (min-width: 2100px) {
  .deco001::before {
    background-size: 100% calc(2vw + 83px);
  }
}

.deco002 {
  overflow: hidden;
  position: relative;
  height: 100px;
}
.deco002::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 63px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/></svg>');
}

@media (min-width: 768px) {
  .deco002::before {
    background-size: 100% 84px;
    background-position: 50% 0%;
  }
}

@media (min-width: 1025px) {
  .deco002::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 71px;
    background-position: 50% 0%;
  }
}
@media (min-width: 2100px) {
  .deco002::before {
    background-size: 100% calc(2vw + 71px);
  }
}

/*------画像フィルター------*/

.img_btn .img_filter {
  transition: 1s all;
}
.img_btn .img_filter:hover {
  filter: none;
  transition: 1s all;
}

/*--------FVスライダー使う場合--------------*/

.top_slider {
  position: relative;
  overflow: hidden;
}

/* ---FVズームアニメ ---*/
@keyframes zoomUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.swiper_fv .swiper-slide {
  opacity: 0;
}

.swiper_fv .swiper-slide:first-child {
  opacity: 1;
}
/* ---FV画像コンテナ ---*/
.swiper-img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ---pictureを使う場合に追加--- */
.swiper-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* 画像 */
.swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* アクティブ or クローンの画像にズーム */
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear both;
}

/*----------キャッチ----------------*/
.top_slider .catch {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  max-width: 800px;
  width: 90%;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: #fff;
  pointer-events: none;
  z-index: 2;
  animation: apper 1.5s ease-in-out;
}

@keyframes apper {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 460px) {
  .line1 {
    font-size: 1rem;
  }

  .line2 {
    font-size: 1rem;
  }
}
.mask {
  mask-image: url(../img/mask.png);
  mask-size: 100% calc(100vh - 160px);
  mask-repeat: no-repeat;
}

/*---TOPメイン--------------*/
main {
  display: block;
  position: relative;
}

main section {
  padding-block: var(--section_space);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/*---制作実績 Swiper矢印はみ出し対策-------------------------*/
.works_archive {
  overflow: visible;
}

/*
@media (max-width: 768px){
	main section{
		padding: 60px 0;
	}
}
*/

.inner.white {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .inner.white {
    padding: 40px 20px;
  }
}

.info_wrap {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .info_wrap {
    padding: 30px 15px;
  }
}

/*-------TOP 新着情報--------------------------*/
.news_section {
  padding: var(--section_space) 0;
}

.news_list {
  max-width: 960px;
  margin: 0 auto 40px;
  border-top: 1px solid #ddd;
}

.news_item {
  border-bottom: 1px solid #ddd;
}

.news_item a {
  display: grid;
  grid-template-columns: 140px 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 10px;
  color: var(--text_color);
}

.news_item a:hover {
  opacity: 0.7;
}

.news_date {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.news_cat {
  display: inline-block;
  text-align: center;
  padding: 6px 12px;
  background: var(--main_color);
  color: #fff;
  font-size: 0.8rem;
}

.news_title {
  margin: 0;
}

@media (max-width: 768px) {
  .news_item a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .news_cat {
    width: fit-content;
  }
}

/*-------TOP 自己紹介----------------------*/

/*-------TOP　制作実績----------------------*/
.testimonial_section {
  padding: var(--section_space) 0;
  overflow: hidden;
}

.testimonial_swiper {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 30px 0 70px;
  overflow: visible;
}

.testimonial_swiper .swiper-wrapper {
  align-items: center;
}

.testimonial_swiper .swiper-slide {
  opacity: 0.45;
  transform: scale(0.82);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.testimonial_swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.testimonial_card {
  text-align: center;
}

.testimonial_img_wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #ddd;
}

.testimonial_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.testimonial_card:hover .testimonial_img {
  transform: scale(1.08);
}

.testimonial_body {
  background: #fff;
  padding: 24px 20px 28px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial_body p {
  margin: 0;
}

.testimonial_name {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--main_color);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial_pagination {
  margin-top: 28px;
  text-align: center;
}

.testimonial_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 1;
  margin: 0 6px !important;
}

.testimonial_pagination .swiper-pagination-bullet-active {
  background: var(--main_color);
}

@media (max-width: 768px) {
  .testimonial_swiper {
    padding: 20px 0 60px;
  }

  .testimonial_img_wrap {
    height: 220px;
  }

  .testimonial_body {
    padding: 20px 16px 24px;
  }
}

/*--------------------TOP  Photo Gallery -----------------------*/
.t_photo {
  overflow: hidden;
}

.photo_gallery_swiper {
  width: 100%;
}

.photo_gallery_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.photo_gallery_swiper .swiper-slide {
  width: 320px;
}

.photo_gallery_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: 0.4s;
}

.photo_gallery_img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .photo_gallery_swiper .swiper-slide {
    width: 240px;
  }

  .photo_gallery_img {
    height: 170px;
  }
}

/*-------TOP----------------------*/

/*-------TOP----------------------*/

/*-------TOP----------------------*/

/*===フッター==============================*/
.footer_top {
  position: relative;
  z-index: 1;
  background: url(../img/footer.jpg);
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-position: top;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background-attachment: fixed;
}
/*Safariのみ*/
::-webkit-full-page-media,
:future,
:root .footer_top {
  background-attachment: scroll;
}
.footer_top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: -1;
}

.footer_top .text {
  text-align: center;
}
.footer_top .text p {
  color: #fff;
}

.footer_top .sbtn {
  width: 300px;
  margin: 0;
}
.footer_top .sbtn a {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  /*	width: 260px;*/
}
.footer_top .main_ttl span {
  color: #fff;
}
.footer_flex {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 100px;
}

.footer_text {
  padding: 0;
  width: 100%;
}
.footer_text p {
  margin: 0;
  color: #333;
}
.footer_text h3 {
  display: block;
  color: #333;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer_text h3 span {
  font-size: 1.2rem;
  font-weight: 400;
}
.footer_text img {
  width: 100px;
}
.transform .inner .main_ttl::before {
  color: #fff;
}
.footer_middle {
  text-align: center;
  position: relative;
  padding: 50px 0;
}

.footer_contact {
  padding-top: 100px;
  position: relative;
}

.footer_flex .sbtn a {
  color: #fff;
  border: 1px solid #fff;
}
.footer_flex .sbtn a:hover {
  background: #fff;
  color: #333;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .footer_flex {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

.copyright {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  letter-spacing: 0.08em;
  background: var(--main_color);
}
.copyright p {
  font-size: 0.8rem;
}
@media (max-width: 580px) {
  .copyright p {
    font-size: 0.5rem;
  }
}

/*-------トップに戻る----------*/
.page_top {
  opacity: 0;
  pointer-events: none;
  width: 60px;
  aspect-ratio: 1 / 1;
  position: fixed;
  right: 3%;
  bottom: 4%;
  border-radius: 50%;
  transition: 1s;
  background: #333;
  z-index: 50;
}
.page_top a {
  display: block;
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.page_top a i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}
.page_top.is_animation {
  opacity: 1;
  pointer-events: all;
}
.page_top.is_animation:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .page_top {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 10px;
  }
}

/*-----------------------------下層トップ-------------------------*/
.kasou_top {
  position: relative;
  z-index: 1;
  background: url("../img/kasou_top.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 130px 0;
  padding: 180px 0 100px;
}

.kasou_about {
  background: url("../img/kasou_about.jpg");
  background-size: cover;
  background-position: center;
}
.kasou_contact {
  background: url("../img/kasou_about.jpg");
  background-size: cover;
  background-position: center;
}
.kasou_news {
  background: url("../img/kasou_about.jpg");
  background-size: cover;
  background-position: center;
}
.kasou_top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 450px) {
  .kasou_top::after {
    background-size: 1px 1px;
    opacity: 0.5;
  }
}
.kasou_top h2 {
  position: relative;

  z-index: 3;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .kasou_top {
    padding: 150px 0 100px;
  }
  .kasou_top h2 {
    font-size: 1.9rem;
  }
}

/*パンくず*/
.breadcrumb {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
  vertical-align: top;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f015";
  font-weight: bold;
}
.breadcrumb li a:hover {
  opacity: 0.7;
}

/*---制作実績ページ-------------------------*/
/* =============================================
   Works Archive（制作実績一覧ページ）
   archive-works.php 用スタイル
============================================= */
.works_archive {
  margin: 150px 0;
}
/* -------------------
   一覧ページ全体余白
------------------- */
.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid_item {
  border-radius: 10px;
  background: #edf;
  padding: 15px;
  text-align: center;
}
.grid_img {
  max-width: 100%;
  height: auto;
}
.grid_text {
  text-align: left;
}

/* -------------------
   サムネイル画像
   16:9固定 + トリミング
------------------- */
.work_thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.work_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------グリッドレイアウト（通常表示用）---------------- */
.works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ------カードデザイン------------------- */
.work_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.work_card:hover {
  transform: translateY(-5px);
}

.work_thumb img {
  width: 100%;
  display: block;
}

/* ------------カード本文エリア------------------ */
.work_body {
  padding: 15px;
}

/* タイトル */
.work_title {
  font-size: 16px;
  margin: 10px 0;
}

/* 投稿日 */
.work_date {
  font-size: 12px;
  color: #888;
}
/* カテゴリ */
.work_cat {
  font-size: 12px;
  color: #555;
}
/* 投稿日+カテゴリFlex */
.work_meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
/*---------------Swiper調整-------------------*/
.works_swiper,
.logo_swiper {
  position: relative;
  overflow: visible;
  padding-bottom: 60px;
}

.works_swiper {
  z-index: 5;
}

/*---Swiperラッパー-------------------------*/
.works_swiper_wrap {
  position: relative;
}

/*---Web制作 ページネーション-------------------------*/
.works_pagination_wrap {
  margin-top: 30px;
  text-align: center;
}

.works-pagination {
  position: static !important;
}

/*---ロゴ制作 ページネーション-------------------------*/
.logo_pagination_wrap {
  margin-top: 30px;
  text-align: center;
}

.logo-pagination {
  position: static !important;
}

/*---ページネーション ドット共通-------------------------*/
.works-pagination .swiper-pagination-bullet,
.logo-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

/*---矢印-------------------------*/
.swiper-button-prev,
.swiper-button-next {
  color: var(--main_color);
}

.swiper-button-prev {
  left: -50px;
}

.swiper-button-next {
  right: -50px;
}

/*---ロゴ制作-------------------------*/
.logo_swiper .work_thumb {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.logo_swiper .work_thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---記事カテゴリ-------------------------*/
.article_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.single_cat_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 18px;
  background: #1e90ff;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  line-height: 1;
}

/*---制作実績カテゴリ-------------------------*/
.work_cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 12px;
  background: #1e90ff;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  line-height: 1;
}
/* -------------------レスポンシブ------------------- */
@media (max-width: 768px) {
  .works_grid {
    grid-template-columns: 1fr;
  }

  .works_swiper {
    padding-bottom: 50px;
  }
  .article_cat {
    gap: 6px;
  }

  .single_cat_tag,
  .work_cat {
    font-size: 11px;
    padding: 6px 12px;
  }
}
/*---下層ページ-------------------------*/

/*---下層ページ-------------------------*/

/*---下層ページ-------------------------*/

/*---下層ページ-------------------------*/

/*---お問い合わせ-------------------------*/
.dl {
  padding-bottom: 0;
}
.btn_flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

/*===お問い合わせページ==============================*/
.contact .tel_contact {
  text-align: center;

  padding: 10px 0;
  margin: 0 auto;
  max-width: 600px;
}
.contact .tel_contact a {
  display: block;
  font-size: 2rem;
  white-space: nowrap;
}
.contact .tel_contact a:hover {
  opacity: 0.6;
}
.contact .tel_contact p {
  font-size: 0.8rem;
}
.tel_contact i {
  color: #333;
  padding-left: 10px;
}

.contact_flexbox {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: auto;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #008bc8 0%, #005897 50%, #1d2087 100%)
    1;
}
@media (max-width: 768px) {
  .contact_flexbox {
    flex-direction: column;
    gap: 50px;
  }
  .contact .tel_contact a {
    font-size: 2rem;
  }
}

/*-------メールフォーム---------------------------*/
.mailform {
  margin: 0 auto;
  max-width: 960px;
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1) {
  width: 28%;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  padding: 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  vertical-align: middle;
}
.mailform .row span.hissu {
  color: #fff;
  background: var(--main_color);
}
.mailform .row span.ninni {
  border: 1px solid var(--main_color);
  color: var(--main_color);
  /*	background: linear-gradient(90deg, rgba(0,139,200,1) 0%, rgba(0,88,151,1) 50%, rgba(29,32,135,1) 100%);*/
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform .box,
.mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}

.selectbox {
  /*	width: 100% !important;*/
  border: 1px solid #ddd;
  padding: 5px;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  /*    pointer-events: none;*/
}
.selectbox select {
  appearance: none;
  width: 100%;
  /*    padding: .4em calc(.8em + 30px) .4em .8em;*/
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.selectbox select:focus {
  outline: none;
}

.mailform .box.mini {
  width: 120px !important;
}
.mailform .postal_btn {
  padding: 2px 10px;
  background: #f4f4f4;
  border-radius: 2px;
  margin-left: 5px;
  border: 1px solid #ccc;
}
.mailform .postal_btn:hover {
  opacity: 0.7;
}
.mailform button {
  display: block;
  text-align: center;
  transition: 0.6s;
  font-size: 1rem;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #333;
  border: 1px solid #333;
  /*	border-radius: 25px;*/
  color: #fff;
}
.mailform button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.mailform button:hover {
  background: #fff;
  color: #333;
  border: 1px solid #333;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 700;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}

.mailform .form_meta_row {
  align-items: center;
}

.recaptcha_wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 30px 0;
}

/* iframeのはみ出し対策 */
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: center;
}

.mailform .form_notice {
  font-size: 0.9rem;
  text-align: center;
}

.mailform .form_status {
  min-height: 1.8em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--main_color);
  font-size: 0.9rem;
}

.mailform .form_config_notice {
  margin: 0;
  padding: 14px 16px;
  background: #f4f8fb;
  border: 1px solid #c8dceb;
  color: #22577a;
  font-size: 0.9rem;
}

/*------------チェックボックス-----------------------------*/
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
input[type="checkbox"] + label::before {
  background: #fff;
  border: 1px solid #999;
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
input[type="checkbox"] + label::after {
  border-right: 3px solid #005897;
  border-bottom: 3px solid #005897;
  content: "";
  display: block;
  height: 15px;
  left: 8px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 36%;
  width: 5px;
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition:
    transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}
input[type="checkbox"]:checked + label::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1, 1, 1);
}
@media (max-width: 768px) {
  input[type="checkbox"] + label {
    display: block;
  }
}

/*ラジオボタン*/
input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
input[type="radio"] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
input[type="radio"]:checked + label::before {
  background-color: #dd7e52;
  box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type="radio"]:focus + label::before {
  outline: none;
  border-color: #dd7e52;
}
input[type="radio"]:disabled + label::before {
  box-shadow: inset 0 0 0 2px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
input[type="radio"] + label:empty::before {
  margin-right: 0;
}
@media (max-width: 768px) {
  input[type="radio"] + label {
    display: block;
  }
}

.contact_info ul li {
  margin-bottom: 5px;
  text-align: center;
  font-size: 0.9rem;
}

/*---------プライバシーポリシー--------------------------*/

.privacy li .privacy_wrap .privacy_subject {
  text-align: center;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  margin: 0 auto;
  text-decoration: underline;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.privacy li .privacy_wrap .privacy_subject:hover {
  text-decoration: none;
}

/* honeypot（スパム対策） */
.hp_field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box {
  position: relative;
  background-color: #e6e6e6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  will-change: max-height;
}

.privacy_flame {
  height: 250px;
  overflow-y: scroll;
  padding: 20px; /* ←ここに移動 */
}
.privacy_flame p {
  margin: 0;
  padding: 10px 0;
  font-size: 0.8rem;
}
.privacy_flame p span {
  display: block;
  color: #333;
  font-size: 0.9rem;
}
.privacy_flame p span::before {
  content: "■";
  display: inline-block;
  font-size: 0.6rem;
  margin-right: 0.5em;
  transform: translateY(-2.5px);
}
.privacy_flame ul li {
  font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar {
  overflow: hidden;
  width: 1px;
  background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
  display: none;
}
.privacy_flame::-webkit-scrollbar-thumb,
.privacy_flame::-webkit-scrollbar-corner {
  background: #433c2e;
}

/*===サンクスページ===*/
.thanks .inner .small p {
  font-size: 0.8rem;
}
.thanks .sbtn a {
  margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px) {
}
@media (max-width: 768px) {
}
@media (max-width: 450px) {
}
