@charset "UTF-8";
/*
Theme Name: WASABI Theme 2022
Theme URI: http://wasabi-d.com
Description: ワサビデザイン サイトテーマ
Version: 3.0
*/

/* css reset
---------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

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

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* グーテンベルクの設定
---------------------------------------------*/
.alignleft {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
  margin-right: 0;
}

.aligncenter {
  margin-left: auto;
  margin-right:  auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
  text-align: center;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

/* end グーテンベルクの設定
---------------------------------------------*/



/* 基本設定
---------------------------------------------*/

html {
  font-size: 62.5%; /* ≒10px */
  font-family: var(--chugo);
}


body {
  /*animation-name: anim-fadein;
  animation-duration: 1s;
  animation-fill-mode:forwards;*/
}

p {
  color: #333;
  font-family: var(--honbun);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

a {
  color: #5d5d5d;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .8;
  text-decoration: none;
}

/*画像が縦長になるのを回避*/
img {
  height: auto;
  width: auto;
  max-width: 100%;
}

/* 変数 */
:root {
    /*フォントサイズに関する参考サイト：https://type-scale.com*/
  --f1: 2.44em; /* 39.04px */
  --f2: 1.95em; /* 31.2px */
  --f3: 1.56em; /* 24.96px */
  --f4: 1.25em; /* 20px */
  --f5: 1em;    /* 16px */
  --f6: 0.8em;  /* 12.8px */

  --basecolor: #004ea2; /* 基本色 */
  --secondcolor: #009e96;
  --gradient: linear-gradient( to right,  rgba(0,78,162,1) 0%, rgba(0,134,167,1) 50%, rgba(0,158,150,1) 100% ); /* 参考サイト：https://gradienthunt.com */

  /* フォントの指定 */
  --fontmincho: 'Hiragino Mincho', serif;
  --fontgothic: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --honbun: "中ゴシックBBB";
    --honbunbold: "見出ゴMB31";
    --philosophy: Ryumin Regular KL;
    --enfont: 'museo-sans';

}
.top-works-box {
  margin: 0 auto;
  overflow: hidden;
  width: 92%;
}
/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* fadeUp */
.fadeInUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeTrigger1,
.bgTrigger1 {
  opacity: 0;
}

/* / アニメーション */


/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/
.header-wrap {
  position: relative;
  z-index: 10000;
}

.header {
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  width: 92%;
  padding: 0 10px;
  position: relative;
}

.site-tit {
  width: 160px;
}

h1 {
  padding-top: 10px;
  overflow: hidden;
  position: relative;
  width: 160px;
}

h1 a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

/*h1 a::after {
  content: "";
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 30px;
  top: 0;
  opacity: 1;
  transition: .5s;
}

.global-nav h1 a::after {
  background: rgba(240, 240, 240, 1);
}

h1 a:hover::after {
  opacity: 0;
  transform: translateX(100%);
}*/

h1 img {
  width: 100%;
}

h1 a:hover {
  opacity: 1;
}

/* メニュー */
.header-nav {
  margin-right: 55px;
  padding-top: 20px;
}

.header-nav > ul {
  color: #575757;
  display: flex;
  font-family: var(--enfont);
  font-size: 1.65rem;
}

.header-nav > ul > li {
  margin-right: 40px;
  position: relative;
}

.header-nav > ul > li:last-child {
  margin-right: 0;
}

.header-nav > ul > li a,
.global-nav_item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.header-nav > ul > li a::after,
.global-nav_item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.header-nav > ul > li a:hover::after,
.global-nav_item a:hover::after {
  transform: scale(1, 1);
}

.header-nav > ul > li a span {
  color: #7d7d7d;
  display: block;
  font-family: var(--honbun);
  font-size: 1.1rem;
  padding-top: 3px;
}

.sub-nav {
  background-color: #f9f9f9;
  display: none;
  position: absolute;
  overflow: hidden;
  font-family: var(--enfont);
  font-size: 1.5rem;
  left: 0;
  top: 2.1em;
  width: 8em;
  z-index: 10000;
}
.sub-nav > li > a {
  border-bottom: solid 1px #fff;
  display: block;
  font-size: 1.5rem;
  line-height: 1.75;
  background-color: #f9f9f9;
  padding: .2em .5em;
  text-align: left;
  width: 100%;
}

.sub-nav > li > a:hover {
  background-color: #eeeeee;
  opacity: 1;
}

.sub-nav > li > a::after,
.sub-nav > li > a:hover::after {
  display: none;
}

/* / メニュー */


/* ハンバーガーメニュー */
.toggle-btn {
  cursor: pointer;
  width: 35px;
  height: 20px;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 700;
}

.toggle-btn_line {
  background: #575757;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.5s;
}

.toggle-btn_line-top {
  top: 0px;
  width: 35px;
}

.toggle-btn_line-center {
  top: 7px;
  right: 0;
  width: 25px;
}

.toggle-btn_line-bottom {
  top: 14px;
  right: 0;
  width: 15px;
}

.toggle-btn_line-top.active {
  top: 10px;
  width: 30px;
  transform: rotate(45deg);
}
.toggle-btn_line-center.active {
  transform: scaleX(0);
}
.toggle-btn_line-bottom.active {
  top: 10px;
  right: 5px;
  width: 30px;
  transform: rotate(135deg);
}

/* フルスクリーンメニュー部分 */
.global-nav {
  display: none;
  position: fixed;
  background: rgba(240, 240, 240, 1);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 500;
}

.navi-logo {
  margin: 0 auto;
  padding-top: 0;
  width: 92%;
}

.global-nav_inner {
  display: flex;
  justify-content: space-between;
  margin: 100px auto;
  width: 70%;
}

.global-nav_inner > li > a span {
  font-family: var(--honbun);
  font-size: small;
  padding-left: .5em;
}

.global-nav_item {

}

.global-nav_item a {
  font-family: var(--enfont);
  font-size: 3.4rem;
  text-decoration: none;
}

.global-nav_item a:hover {

}

.global-nav-sub li {
  margin-top: 10px;
}

.global-nav-sub a {
  font-size: 2.4rem;
}

.global-nav_item_sns {
  display: flex;
  justify-content: center;
}

.global-nav_item_sns img {
  margin-left: 26px;
  width: 30px;
}


/* end ヘッダー
--------------------------------------*/


/* ページレイアウト
--------------------------------------*/

/* ボタンアニメーション */
.btn001 {
  margin-top: 50px;
  width: 200px;
}

.btn001 a {
  background: #fff;
  border: 2px solid #009e96;
  color: #009e96;
  display: block;
  font-size: 1.5rem;
  height: 46px;
  width: 160px;
  line-height: 46px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  text-decoration: none;
  z-index: 1;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn001 a::before {
  border-bottom: 1px solid #009e96;
  border-right: 1px solid #009e96;
  content: '';
  width: 34px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 18px;
  transform: skew(45deg);
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn001 a:hover::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn001 a::after {
  background: #009e96;
  /*border-top: 46px solid transparent;
  border-right: 46px solid #fff;
  border-bottom: 46px solid transparent;
  border-left: 46px solid transparent;*/
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn001 a:hover {
  opacity: 1;
  color: #fff;
}
.btn001 a:hover::after {
  transform: scale(1, 1);
}

.btn001.contact-btn {
  margin-top: 30px;
  width: 600px;
}

.btn001.contact-btn a {
  text-align: center;
  font-size: 2.6rem;
  height: 80px;
  line-height: 80px;
  padding: 0 30px;
  width: 540px;
}

.btn001.contact-btn a::before {
  border-bottom: 1px solid #009e96;
  border-right: 1px solid #009e96;
  content: '';
  width: 52px;
  height: 12px;
  position: absolute;
  right: 50px;
  top: 30px;
  transform: skew(45deg);
  transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn001.contact-btn a:hover::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.top-service-btn {
  margin: 0 auto;
  width: 200px;
}

.btn-radius a {
  border: 2px solid #009e96;
  border-radius: 50px;
}



/* / ボタンの設定 */


/*トップページ------------*/


.main-visual {
  float: right;
  height: 58%;
  margin: 35px 0 100px 0;
  overflow: hidden;
  position: relative;
  width: 92%;
  z-index: 100;
}

#top-area {
  clear: both;
}


/* 画像のアニメーション */
.bg-extend1 {
	animation-name: bgextendAnimeBase;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;
  }
}

/*中の要素*/
.bg-appear {
	animation-name: bgextendAnimeSecond;
	animation-duration: 1s;
	animation-delay: .7s;
	animation-fill-mode:forwards;
	opacity: 0;
}

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

/* 左から */
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d3d3d3;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* 右から */
.bgRLextend::before {
	animation-name: bgRLextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d3d3d3;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/* / 画像のアニメーション */


/* コンセプト */
.top-message {
  margin: 0 auto 100px;
  padding-left: 0;
  width: 800px;
}

.top-message p {
  font-size: 1.9rem;
  line-height: 2.3;
}

.top-message p.top-motto {
  color: #3c9a76;
  font-size: var(--f1);
}

strong {
  font-family: var(--honbunbold);
}
/* / コンセプト */


h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  font-family: var(--enfont);
  font-size: 3.8rem;
  transition: .3s;
}

h2 span:hover {
  background-position: 100% 0;
}

.top-service h2,
#top-works h2,
#top-information h2,
#contact-bottom h2 {
  margin-bottom: 50px;
  text-align: center;
}

/* サービス */
.top-service {
  margin-bottom: 100px;
}

.top-service-box {
  clear: both;
  margin-bottom: 50px;
  overflow: hidden;
  width: 100%;
}

.top-service-box h3 {
  font-family: var(--enfont);
  font-size: 2.8rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.top-service-graphic,
.top-service-web {
  width: 43%;
}

.top-service-img {
  height: 15vw;
  overflow: hidden;
  width: 50%;
}

.top-service-img img {
  margin-top: -50px;
  width: 100%;
}

.top-service-graphic {
  float: right;
  margin-left: 2%;
  margin-right: 5%;
}

.top-service-web {
  float: left;
  margin-left: 5%;
  margin-right: 2%;
}

.top-service-graphic + .top-service-img {
  float: left;
}

.top-service-web + .top-service-img {
  float: right;
}
/* / サービス */

/* 実績 */
#top-works {
  clear: both;
  margin-bottom: 100px;
}

.top-works-box {
  margin: 0 auto;
  overflow: hidden;
  width: 92%;
}

.top-works-box .works-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.top-works-box .works-list li {
  margin: 0 0 40px 0;
  height: 20vw;
  width: 30%;
}

.top-works-box .works-list li:nth-child(3n) {
  margin-right: 0;
}

/*.top-works-box .works-list li img {
  width: 100%;
  height: auto;
}*/

/* / 実績 */


/* インフォメーション */
#top-information {
  background: #f7f7f7;
  height: 280px;
  margin-bottom: 100px;
  padding-top: 50px;
  width: 100%;
}

.top-info-list {
  margin: 0 auto;
  width: 780px;
}

.top-info-list li {
  font-family: var(--honbun);
  font-size: 1.6rem;
  border-bottom: solid 1px #353535;
  padding-bottom: 10px;
}

.top-info-list li span {
  margin-right: 55px;
}

.top-info-list li a {
  text-decoration: none;
}

/* / インフォメーション */

/* インスタ埋め込み */
.top-insta-box h2 {
  text-align: center;
  margin-bottom: 30px;
}

.top-insta-box {
  margin: 0 auto 70px;
  overflow: hidden;
  width: 800px;
}
/* / インスタ埋め込み */


/* / トップページ------------*/


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

#main-cont {
  margin: 50px auto;
  width: 100%;
}

.content-box01 {
  margin: 60px auto 0;
  max-width: 1200px;
  width: 73%;
  
}

.content-box02 {
  margin: 60px auto 0;
  width: 960px;
}

.content-box03 {
  margin: 60px auto 0;
  padding-right: 40px;
}

.page-tit {
  margin: 0 auto;
  width: 92%;
}

.page h2,
.signle h2 {
  font-size: 3.2rem;
}

/* 検索結果 */
.search p.title {
  width: auto;
  background: #333333;
  color: #ffffff;
  padding: 10px;
  font-size: 1.25em;
}

.search-no-results p.title {
  text-align: left;
  margin-bottom: 50px;
}

.search-no-results #content {
  text-align: center;
  line-height: 2;
  border: solid 1px #333333;
  padding-bottom: 40px;
}


/* アバウト -------*/
.page-id-107 .page-tit h2 span {
  color: #000;
  font-size: 2.8rem;
}

.philosophy {
  font-family: var(--philosophy);
  font-feature-settings: "palt";
  text-align: center;
  margin: 60px 0 100px;
}

.philosophy span {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  font-family: var(--philosophy);
  line-height: 1.2;
  transition: .3s;
}

.philosophy span:hover {
  background-position: 100% 0;
}

.philosophy-txt1 {
  font-size: 5.3rem;
}

.philosophy-txt2 {
  font-size: 4.325rem;
}

.philosophy-txt3 {
  font-family: var(--philosophy);
  font-size: 12.6rem;
}

.philosophy-txt4 {
  font-size: 6.5rem;
  letter-spacing: .3rem;
}

.concept-image {
  margin: 60px auto;
  width: 550px;
}

.about-movie {
  max-width: 900px;
  min-width: 600px;
  margin: 40px auto 0;
}

.about-movie video {
  width: 100%;
}

.motto {
  color: #3c9a76;
  font-family: var(--honbunbold);
  font-size: var(--f1);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-company {
  border-top: solid 1px #757575;
  margin-top: 50px;
  padding-top: 50px;
}

.about-company h3 {
  font-family: var(--honbun);
  font-size: 2.0rem;
  font-weight: normal;
  margin-bottom: 50px;
}

.office-date {
  background: #f4f4f4;
  font-family: var(--honbun);
    font-size: 1.5rem;
    margin: 50px auto 0;
    padding: 40px;
  }

  .office-date dt {
    width: 120px;
    float: left;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .office-date dd {
    line-height: 1.5;
    margin: 0 0 15px 120px;
  }

/* / アバウト -------*/


/* サービス -------*/
.service-detail {
  clear: both;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  margin-top: 50px;
  overflow: hidden;
  width: 100%;
}

.content-box01 + .service-detail {
  margin-top: 110px;
}

.service-detail h3 {
  font-family: var(--enfont);
  font-size: 3.4rem;
  font-weight: normal !important;
  margin-bottom: 20px;
}

.service-info {
  margin-left: 13%;
  width: 34.5%;
}

.service-image {
  height: 19vw;
  overflow: hidden;
  margin-top: 50px;
  width: 47.5%;
}

.service-image img {
  margin-top: -25px;
  width: 100%;
}

.top-service-graphic {
  float: right;
  margin-left: 2%;
  margin-right: 5%;
}

.top-service-web {
  float: left;
  margin-left: 5%;
  margin-right: 2%;
}

.service-btn-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 450px;
}

.effort-box {
 margin: 40px 0 0 0;
}

.effort-box h4 {
  font-family: var(--honbunbold);
  font-size: 1.8rem;
  margin: 20px 0 8px 0;
}
/* / サービス -------*/


/* / Web Graphic（サービス） -------*/
.service-web-graphic h3 {
  font-family: var(--enfont);
  font-size: 3.4rem;
  font-weight: normal !important;
  margin-bottom: 30px;
}

.workflow-wrap {
  clear: both;
  margin: 80px 0 0;
}

.workflow {
  font-family: var(--honbun);
  font-size: 1.6rem;
}

.workflow-num {
  border-radius: 50%;
  border: solid 1px #000;
  display: inline-block;
  font-family: var(--enfont);
  font-size: 3.0rem;
  font-weight: normal !important;
  margin-right: 1em;
  padding: 1em 0;
  width: 3em;
  text-align: center;
}

.workflow dt {
  font-size: 2.2rem;
}

.workflow dd {
  border-bottom: solid 1px #848484;
  line-height: 1.5;
  margin: 10px 0 30px 0;
  padding: 0 0 30px 7.5em;
}

.service-diary-list {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  width: 73%;
}

.service-diary-list .su-post {
  border-bottom: solid 1px #848484;
  border-top: solid 1px #848484;
  display: flex;
  justify-content: space-between;
  width: 47%;
}

.service-diary-list .su-post a {
  background: #e9f8e8;
  display: block;
  font-family: var(--honbun);
  font-size: 1.8rem;
  padding: 2em 5%;
  text-decoration: none;
  width: 90%;
}

.service-diary-list .su-post a:hover {
  background: #f2f2f2;
}

.service-diary-list .su-post-title {
  padding-left: 1em;
  position: relative;
}

.service-diary-list .su-post-title:after {
  border-bottom: solid 2px #606060;
  border-right: solid 2px #606060;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
  transition: .3s;
}

.service-diary-list .su-post-title:before {
  border-top: solid 2px #606060;
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 9px;
  height: 2px;
  transition: .3s;
}

.service-diary-list .su-post-title:hover::after,
.service-diary-list .su-post-title:hover::before {
  left: 3px;
}

.wasabi-give {
  margin: 50px 0;
}

h4.give-midashi {
  color: var(--basecolor);
  font-family: var(--honbunbold);
  font-size: 3.0rem;
  line-height: 1.3;
  margin: 50px 0;
  text-align: center;
}

.give-icon {
  margin: 20px auto;
  width: 20vw;
}

.give-list {
  overflow: hidden;
  margin: 0 auto;
  width: 90%;
}

.give-list li {
  background: url(./img/icon-check.svg) no-repeat left 10px center;
  background-size: 2.4rem;
  border: solid 1px #6d6d6d;
  border-radius: 50px;
  font-family: var(--honbun);
  float: left;
  font-size: 2.4rem;
  margin: 10px;
  padding: 10px 20px 10px 40px;
}

.service-qa {
  font-size: 1.6rem;
  margin: 40px 0;
}

.service-qa dt {
  background: #eee;
  font-family: var(--honbunbold);
  font-size: 1.8rem;
  padding: 10px 15px;
  margin-bottom: 20px;
  width: calc(100% - 30px);
}

.service-qa dd {
  font-family: var(--honbun);
  margin-bottom: 40px;
  line-height: 1.7;
}

.service-plan-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.service-plan {
  border: solid 1px #000;
  padding: 3%;
  line-height: 1.3;
  overflow: hidden;
  width: 40%;
}

.service-plan h5 {
  text-align: center;
  font-family: var(--honbunbold);
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-plan h5.recommend-plan {
  background: var(--basecolor);
  color: #fff;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  padding: 5% 0 5% 2.5%;
  margin-left: -7.5%;
  margin-top: -7.5%;
  width: 112.5%;
}

.service-midashi01 {
  background: var(--gradient);
  color: #fff;
  font-family: var(--honbunbold);
  font-size: 2.0rem;
  padding: 15px 10px;
  margin: 60px 0 20px;
}

.merit-wrap {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.merit-box {
  border-bottom: solid 1px #000;
  padding-bottom: 15px;
  width: 30%;
}

.merit-box h4,
.wasabi-give h4 {
  font-size: 1.8rem;
  font-family: var(--honbunbold);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.graphic-item-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0 30px;
}

.graphic-item-wrap::after {
  content: "";
  display: block;
  width: 30%;
}

.graphic-item-box {
  border-bottom: solid 1px #000;
  margin-top: 40px;
  padding-bottom: 15px;
  text-align: center;
  width: 30%;
}

.graphic-item-box h4 {
  font-size: 1.8rem;
  font-family: var(--honbunbold);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.graphic-item-img {
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  height: 15vw;
  width: 100%;
}

.item-flyer figure {
  width: 35%;
}

.item-poster figure {
  width: 40%;
}

.item-pamphlet figure {
  width: 70%;
}

.item-card figure {
  width: 70%;
}

.item-logo figure {
  width: 40%;
}

.item-sign figure {
  width: 65%;
}

.item-book figure {
  width: 40%;
}

.item-other figure {
  width: 50%;
}

/* / Web Graphic（サービス） -------*/


/* 制作実績 -------*/

.works-wrap {
  margin: 60px auto 0;
  min-width: 980px;
  max-width: 73%;
}

.works-cate {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.works-cate li {
  margin: 0 20px;
  height: 46px;
  width: 100px;
}

.works-cate li a {
  border: solid 1px #7f7f7f;
  border-radius: 50px;
  color: #7f7f7f;
  display: block;
  font-size: 1.6rem;
  font-family: var(--enfont);
  line-height: 46px;
  text-align: center;
  text-decoration: none;
  height: 46px;
  width: 100px;
}

.works-cate li.all-cate a,
.category-graphic .works-cate li:nth-child(2) a,
.category-web .works-cate li:nth-child(3) a,
.works-cate li a:hover {
  background: #7f7f7f;
  border: solid 1px #7f7f7f;
  color: #fff;
}

  .works-list {
    display: flex;
    align-content: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .works-list::after{
    content:"";
    display: block;
    width:30%;
  }

  .works-list li {
    /*float: left;
    margin: 0 40px 40px 0;*/
    margin-bottom: 40px;
    width: 30%;
    height: 20vw;
  }

  .works-list li:nth-child(3n) {
    margin-right: 0;
  }

  .works-list li img {
    width: 100%;
    height: 15vw;
    object-fit: cover;
    object-position: center top;
  }

  .works-list li p {
    font-size: 1.6rem;
    line-height: 130%;
    padding: 0;
    margin-top: 10px;
  }

  .works-list li a {
    opacity: 1;
    transition: .2s;
  }

  .works-list li a:hover {
    opacity: .7;
    transition: .2s;
  }

  .works-list li h3 a {
    color: #333;
    text-decoration: none;
    transition: .2s;
  }

  .works-list li h3 a:hover {
    color: #333;
    text-decoration: underline;
  }

  .worksInfo table {
    background: #f7f7f8;
    font-size: 1.4rem;
  }

  .worksInfo {
    margin: 80px 0 50px;
  }

  .worksInfo table th,
  .worksInfo table td {
    font-family: var(--honbun);
    padding: 2px 15px 5px;
  }

  .worksInfo table tr:first-of-type  th,
  .worksInfo table tr:first-of-type td {
    padding-top: 15px;
  }

  .worksInfo table  tr:last-of-type th,
  .worksInfo table  tr:last-of-type td {
    padding-bottom: 15px;
  }

  .worksInfo th {
    text-align: left;
    padding-right: 15px;
  }

/*ページネーション*/
p.pagenation {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
}

span.oldpage {
  float: left;
}

span.newpage {
  float: right;
}

/* ページ番号リンク */
p.pagenum {
  text-align: center;
}

p.pagenum a {
  /*background-color: #e6e6e6;*/
  text-decoration: none;
  color: var(--basecolor);
}

.page-numbers {
  background-color: #fff;
  border: solid 1px var(--secondcolor);
  border-radius: 50%;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 45px;
  margin: 0 5px;
  padding: 1em;
  text-align: center;
  width: 45px;
  height: 45px;
}

.current {
  background-color: #e7f0e6;
  border: solid 1px #e7f0e6;
}

/*p.pagenum span {
  background-color: #fff;
  border: solid 1px #999;
  color: #333;
}

p.pagenum a, p.pagenum span {
  padding: 3px 6px;
  color: #333;
}*/

/* end ページネーション*/


/* end 制作実績 -------*/


/*お問い合わせ -------*/

.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
  font-family: var(--honbun);
}

  .contact-form {
    width: 787px;
    margin: 50px auto 0;
  }

  .contact-form table {
    margin-bottom: 50px;
    width: 787px;
  }

  .contact-form th {
    font-weight: normal;
    text-align: left;
    width: 190px;
  }

  .contact-form th,
  .contact-form td {
    font-size: 1.6rem;
    font-family: var(--honbun);
    padding: 5px 0;
  }

  .contact-form th.th-top {
    padding-top: 17px;
    vertical-align: top;
  }

  .must {
    color: #3c9a76;
    font-size: 1.4rem;
    border: solid 1px #3c9a76;
    margin-left: 5px;
    text-align: center;
    padding: 2px;
  }

  input[type=text],
  input[type=email],
  textarea {
    background: #f3f2f2;
    border: solid 1px #cecece;
    font-size: 1.6rem;
    padding: 17px 10px;
    width: 100%;
  }

  .contact-form p {
    text-align: center;
  }

  .send-btn {
    background: #009e96;
    box-shadow: 7px 7px 15px rgba(66, 66, 66, .2);
    height: 50px;
    margin: 0 auto;
    width: 200px;
    transition: .5s;
  }

  .send-btn:hover {
    background: #004ea2;
    box-shadow: 7px 7px 25px rgba(66, 66, 66, .5);
  }

  .wpcf7-submit {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    width: 200px;
  }

  .contact-form .confirm {
    margin: 20px 0 0 0;
    text-align: center;
  }

  .to-privacy {
    font-size: small;
    text-align: left;
  }

  .join-line {
    width: 787px;
    margin: 50px auto;
  }

  .join-line h3 {
    font-family: var(--honbunbold);
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .join-line .line-btn {
    display: block;
    color: #fff;
    border: solid 3px #01b902;
    background: #01b902;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-family: var(--honbun);
    padding: .8em 0;
    width: 15em;
    margin: 20px auto 0;
    transition: .3s;
  }

  .join-line .line-btn:hover {
    border: solid 3px #01b902;
    background: #fff;
    color: #01b902;
  }

/* / お問い合わせ -------*/


/* プライス -------*/
.price-contents-wrap {
 margin: 0 auto 70px;
 width: 80%;
}

.price-contents-wrap h3 {
  font-family: var(--enfont);
  font-size: 3.4rem;
  font-weight: normal !important;
  margin-bottom: 15px;
}

.price-box {
  margin: 20px 0 40px;
}

.price-box h4 {
  background: var(--gradient);
  color: #fff;
  font-family: var(--honbunbold);
  font-size: 2.0rem;
  padding: 15px 10px;
  margin: 60px 0 20px;
}

.price-list {
  font-family: var(--honbun);
  font-size: 1.6rem;
  margin-bottom: 30px;
  margin-left: 20px;
  width: 100%;
}

.price-list td {
  padding-bottom: 10px;
  line-height: 1.3;
}

.price-list tr td:first-child {
 width: 30%;
}

.price-list tr td:nth-child(2) {
  width: 25%;
 }

 .price-list tr td:nth-child(3) {
  width: 45%;
 }

 .price-item {
  font-size: 1.8rem;
  font-family: var(--honbunbold);
  font-weight: bold;
 }

.price-value {
  font-size: 2.2rem;
  font-family: var(--honbunbold);
  font-weight: bold;
}

.tax {
  font-size: small;
  padding-left: 5px;
}
/* / プライス -------*/


/* ブログ -------*/
.diary-wrap {
  display: flex;
  justify-content: space-between;
  margin: 60px auto 0;
  max-width: 73%;
  width: 1100px;
}

.diary-wrap p {
  margin-bottom: 30px;
}

.diary-list {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: 40px;
}

.diary-list li {
  background: #fbfbfb;
  margin-bottom: 40px;
  position: relative;
  height: 25vw;
  width: 48%;
  /*height: 20vw;*/
}

.diary-list li div {
  width: 100%;
  height: 17vw;
  overflow: hidden;
}

.top-works-box .diary-list li { /*トップページの表示*/
  background: #fbfbfb;
  margin-bottom: 40px;
  position: relative;
  width: 32%;
}

.top-works-box .diary-list li div {
  width: 100%;
  height: 17vw;
  overflow: hidden;
}

.diary-list li img {
  height: 100%;
  /*object-fit: cover;*/
}

.diary-list li .diary-list-cate {
  background: rgb(255, 255, 255, .9);
  font-size: 1.4rem;
  position: absolute;
  text-align: center;
  width: 5em;
  right: 0;
  top: 0;
  z-index: 500;
}

.diary-list li p.day {
  margin: 0 5px;
}

.diary-list li .diary-tit {
  font-family: var(--honbunbold);
  font-size: 1.7rem;
  line-height: 1.3;
  margin: 0 5px 8px;
}

.diary-list li .diary-tit a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  margin: 0;
}

.diary-list li p.diary-tit a:hover {
  text-decoration: underline;
}

.diary-list li p.excerpt {
  color: #565656;
  line-height: 1.5;
  margin: 0 5px;
  padding-bottom: 10px;
}

.diary-side-cont {
  min-width: 280px;
}

.diary-side-cont .side-tit {
  background: #eeeeee;
  border-bottom: solid 1px var(--basecolor);
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding: 5px;
}

.diary-side-cont .side-tit:nth-of-type(2) {
  margin-top: 30px;
}

.diary-cate {

}

.diary-cate li {
  margin: 0;
  width: 100%;
}

.diary-cate li a {
  background: #fff;
  border-bottom: solid 1px #d3d1d1;
  display: block;
  font-size: 1.6rem;
  padding: 8px 5px 5px;
  text-decoration: none;
  transition: .3s;
  width: 100%;
}

.diary-cate li a:hover {
  background: #e9fcf4;
}

.diary-cate-tit {
  color: #5d5d5d;
  font-family: var(--honbunbold);
  font-size: 3.0rem;
  margin-bottom: 30px;
}

.diary-cate-tit span {
  font-size: 2.0rem;
}

.tablestyle001 {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.tablestyle001 th {
  background: #d0ebad;
  padding: 1em 0 !important;
}

.tablestyle001 td:first-child,
.tablestyle001 .tbbg01 {
  background: #fffcf4;
}

.tablestyle001 td {
  padding: 1em !important;
}

/* / ブログ -------*/



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

  .nallow-box {
    margin: 60px auto 0;
    width: 80%;
  }

  .nallow-box h3,
  .liststyle01 li {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }




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


/* 投稿ページ -------*/
.single .page-tit p {
  color: #000;
  font-size: 2.0rem;
}

.single h2 span {
  font-family: var(--honbunbold);
  font-size: 3.2rem;
}

.pagaCate {
  margin: 10px 0 40px;
}

.pagaCate p span {
  border: solid 1px #909090;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #909090;
  padding: 2px 10px;
}

.wp-block-image {
  margin: 25px 0;
}

.wp-block-image figcaption {
  font-family: var(--honbun);
  font-size: 1.2rem;
}

.single h3 {
  background: var(--gradient);
  color: #fff;
  font-family: var(--honbunbold);
  font-size: 2.0rem;
  padding: 5px 10px;
  margin: 50px 0 15px;
}

.single h4 {
  font-family: var(--honbunbold);
  font-size: 2.0rem;
  margin: 25px 0 15px;
}

.content-box02 .wp-block-image {
  margin: 40px 0 60px;
}

.blog-post-index {
  background: #f2f2f2;
  width: 90%;
  margin: 20px auto;
}

.blog-post-index ul {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}

.blog-post-index li {
  font-size: 1.6rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: dotted 1px #bababa;
}

.blog-post-index li a {
  color: #3c9a76;
}




/* 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/

/* お問い合わせ */
#contact-bottom {
  background: #003772;
  height: 530px;
  padding-top: 70px;
  width: 100%;
}

.page #contact-bottom {
  margin-top: 150px;
}

.contact-bottom-area {
  margin: 130px auto 0;
  text-align: center;
  width: 600px;
}

.contact-bottom-area p {
  color: #fff;
  font-size: 2.0rem;
}

/* / お問い合わせ */

#footer-wrap {
  clear: both;
  margin: 30px auto 0;
  position: relative;
  width: 92%;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.f-navi {
  display: flex;
  width: 45%;
}

.f-navi li {
  font-family: var(--enfont);
  font-size: 1.6rem;
  margin-right: 30px;
}

.f-navi li a {
  text-decoration: none;
}

.f-navi li a:hover {
  opacity: .6;
}

.f-sns-link {
  display: flex;
  flex-direction: row-reverse;
}

.f-sns-link li {
  margin-left: 20px;
  width: 22px;
}

.f-sns-link li img {
  opacity: 1;
  transition: .5s;
}

.f-sns-link li img:hover {
  opacity: .7;
}
  
.copy {
  font-family: var(--enfont);
  font-size: 1.2rem;
  margin: 30px 0;
  width: 100%;
}

  
/* トップに戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    right: 80px;
    height: 52px;
    width: 17px;
  }
  
  .to-top img {
    height: auto;
    width: 100%;
  }
  
  .to-top a:hover {
    opacity: .6;
  }
  
/* / トップに戻るボタン */

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/



/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 768px){
  
  /* iPhone safariの右側余白対策 */
  html, body {
    overflow-x: hidden;
  }
  
/* ヘッダー
--------------------------------------*/
  
.header {
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  width: 92%;
  padding: 0 10px;
  position: relative;
}

.site-tit {
  width: 180px;
}

h1 {
  padding-top: 13px;
  overflow: hidden;
  position: relative;
  width: 180px;
}

h1 a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

h1 a::after {
  display: none;
  content: "";
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 30px;
  top: 0;
  opacity: 1;
  transition: .5s;
}

h1 img {
  width: 100%;
}

h1 a:hover {
  opacity: 1;
}
  
  
/* メニュー */
.header-nav {
  display: none;
}
/* / メニュー */

  
/* フルスクリーンメニュー部分 */
.global-nav_inner {
  display: block;
  float: left;
  margin:  30px 0 0 7%;
  width: 38%;
}
  
  .global-nav_inner:first-of-type {
    float: none;
    width: 90%;
  }
  
  .global-nav_inner li {
    margin-bottom: 40px;
  }

  .global-nav_inner > li > a span {
    display: block;
    padding-left: .5em;
  }

  .global-nav-sub li {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 4em;
    text-indent: -2.5em;
  }
  
  .global-nav-sub a {
    font-size: 2.2rem;
  }
  
  .global-nav_item_sns {
    display: flex;
    justify-content: flex-start;
  }
  
  .global-nav_item_sns img {
    margin-left: 0;
    margin-right: 20px;
    width: 28px;
  }
  
/* / フルスクリーンメニュー部分 */

/* end ヘッダー
--------------------------------------*/

  
/* ページレイアウト
--------------------------------------*/
  
/* ボタンアニメーション */
  .btn001.contact-btn {
    width: 100%;
  }

  .btn001.contact-btn a {
    text-align: center;
    font-size: 2.6rem;
    height: 4em;
    line-height: 4em;
    padding: 0 10%;
    width: 80%;
  }
  
  .btn001.contact-btn a::before {
    display: none;
  }
/* / ボタンアニメーション */
  

/*トップページ------------*/

  .main-visual {
    float: none;
    height: 58%;
    margin: 20px 0 50px 0;
    overflow: hidden;
    width: 100%;
  }

  /* コンセプト */
  .top-message {
    margin: 0 auto 70px;
    padding-left: 0;
    width: 90%;
  }
  
  .top-message p {
    line-height: 1.8;
  }
  
  .top-message .btn001 {
    margin: 0 auto;
  }
  /* / コンセプト */
  
  
  /* サービス */
  .top-service {
    margin-bottom: 70px;
  }

  .top-service-box {
    clear: both;
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
  }

  .top-service-graphic,
  .top-service-web {
    float: none;
    margin: 0 auto;
    width: 92%;
  }

  .top-service-img {
    height: 50vw;
    overflow: hidden;
    margin: 0 auto;
    width: 92%;
  }

  .top-service-img img {
    margin-top: -10px;
    width: 100%;
  }

  .top-service-graphic + .top-service-img,
  .top-service-web + .top-service-img {
    float: none;
  }
  
  .service-btn-wrap {
    display: block;
    justify-content: space-between;
    max-width: 450px;
    margin: 50px 0;
  }
  
  .service-btn-wrap .btn001 {
    margin: 20px 0;
  }
/* / サービス */


/* / Web Graphic（サービス） -------*/
.workflow-wrap {
  margin: 80px 0 0;
}

.workflow {
  font-family: var(--honbun);
  font-size: 1.6rem;
}

.workflow-num {
  border-radius: 50%;
  border: solid 1px #000;
  display: block;
  font-family: var(--enfont);
  font-size: 3.0rem;
  font-weight: normal !important;
  margin-bottom: 15px;
  margin-right: 1em;
  padding: 1em 0;
  width: 3em;
  text-align: center;
}

.workflow dt {
  font-size: 2.2rem;
}

.workflow dd {
  border-bottom: solid 1px #848484;
  line-height: 1.5;
  margin: 10px 0 30px 0;
  padding: 0 0 30px 0;
}

.service-diary-list {
  display: block;
  margin: 50px auto;
  width: 90%;
}

.service-diary-list .su-post {
  border-bottom: solid 1px #848484;
  border-top: solid 1px #848484;
  display: block;
  justify-content: space-between;
  width: 100%;
}

.service-diary-list .su-post a {
  background: #e9f8e8;
  display: block;
  font-family: var(--honbun);
  font-size: 1.8rem;
  padding: 2em 5%;
  text-decoration: none;
  width: 90%;
}

.service-diary-list .su-post a:hover {
  background: #f2f2f2;
}

.service-diary-list .su-post-title {
  padding-left: 1em;
  position: relative;
}

.service-diary-list .su-post-title:after {
  border-bottom: solid 2px #606060;
  border-right: solid 2px #606060;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
  transition: .3s;
}

.service-diary-list .su-post-title:before {
  border-top: solid 2px #606060;
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 9px;
  height: 2px;
  transition: .3s;
}

.service-diary-list .su-post-title:hover::after,
.service-diary-list .su-post-title:hover::before {
  left: 3px;
}

.give-icon {
  margin: 20px auto;
  width: 40vw;
}

.give-list li {
  float: none;
  margin: 15px 0;
}

.service-plan-wrap {
  display: block;
}

.service-plan {
  margin-bottom: 20px;
  padding: 3% 5%;
  width: 90%;
}

.service-plan h5.recommend-plan {
  margin-top: -5%;
}

.merit-wrap {
  display: block;
}

.merit-box {
  margin-bottom: 20px;
  width: 100%;
}

.graphic-item-wrap {
  display: block;
}

.graphic-item-wrap::after {
  content: "";
  display: block;
  width: 85%;
}

.graphic-item-box {
  border-bottom: solid 1px #000;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
  text-align: center;
  width: 85%;
}

.graphic-item-img {
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  height: 53vw;
  width: 100%;
}

/* / Web Graphic（サービス） -------*/



/* 実績 */
.top-works-box .works-list {
  display: block;
  width: 100%;
}
  
.top-works-box .works-list li {
  height: 65vw;
  width: 100%;
}
/* / 実績 */


/* インフォメーション */
  .top-info-list {
    margin: 0 auto;
    width: 92%;
  }
  
  .top-info-list li {
    font-family: var(--honbun);
    line-height: 1.5;
  }
  
  .top-info-list li span {
    display: block;
    margin-right: 0;
  }
/* / インフォメーション */


/* インスタ埋め込み */
.top-insta-box {
  margin: 0 auto 50px;
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
}

/* /インスタ埋め込み */

/* / トップページ------------*/
  
  
/* 下層ページ全体 ------------*/
  
  .content-box01,
  .content-box02 {
    margin: 60px auto 0;
    max-width: 92%;
    width: 92%;
  }

  .content-box03 {
    margin: 60px auto 0;
    padding-right: 0;
  }
    /* / 下層ページ全体-------*/
  
  
  /* アバウト -------*/
  .concept-image {
    margin: 40px auto;
    width: 100%;
  }

  .about-movie {
    min-width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
  }
  
  .about-movie video {
    width: 100%;
  }
  
  .philosophy-txt1 {
    font-size: 4.3rem;
  }

  .philosophy-txt2 {
    font-size: 3.325rem;
  }

  .philosophy-txt3 {
    font-family: var(--philosophy);
    font-size: 9.0rem;
  }

  .philosophy-txt4 {
    font-size: 5rem;
    letter-spacing: .3rem;
  }

  .about-company h3 {
    font-family: var(--honbun);
  }
  
  .office-date {
    background: #f4f4f4;
    font-family: var(--honbun);
    font-size: 1.5rem;
    margin: 50px auto 0;
    padding: 40px;
  }
  
  .office-date dt {
    width: 120px;
    float: none;
    line-height: 1.5;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .office-date dd {
    border-bottom: solid 1px #e6e6e6;
    line-height: 1.5;
    margin: 0 0 20px 0;
  }
  
  /* / アバウト -------*/
  
  
  /* サービス -------*/
  .service-detail {
  clear: both;
  display: block;
  overflow: hidden;
  width: 100%;
}
  
  .content-box01 + .service-detail {
    margin-top: 50px;
  }
  
  .service-info {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }
  
  .service-image {
    height: 40vw;
    overflow: hidden;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }

  /* / サービス -------*/
  
  
  /* 制作実績 -------*/
  .works-wrap {
    margin: 60px auto 0;
    min-width: 92%;
    max-width: 92%;
  }
  
  .works-cate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
  }
  
  .works-cate li {
    margin: 0 1%;
    height: 30px;
    width: 30%;
  }
  
  .works-list li {
    /*float: left;
    margin: 0 40px 40px 0;*/
    margin-bottom: 40px;
    width: 100%;
    height: 68vw;
  }

  .works-list li img {
    width: 100%;
    height: 55vw;
    object-fit: cover;
    object-position: center top;
  }
  
  /* / 制作実績 -------*/
  
  
  /* お問い合わせ -------*/
  .contact-form {
    width: 92%;
    margin: 50px auto 0;
    overflow: hidden;
  }
  
  .contact-form table {
    margin-bottom: 50px;
    width: 100%;
  }
  
  .contact-form th,
  .contact-form td {
    font-size: 1.6rem;
    display: block;
  }
  
  input[type=text],
  input[type=email],
  textarea {
    width: 90%;
  }

  .join-line {
    width: 90%;
  }

  .join-line .line-btn {
    width: 100%;
    padding: 1.5em 0;
    font-size: 1.8rem;
  }
  
  /* / お問い合わせ -------*/


/* プライス -------*/
.price-contents-wrap {
  margin: 0 auto 70px;
  width: 100%;
 }

 .price-list {
  margin-left: 0;
 }

/*.price-list td {
  display: block;
  padding-bottom: 0;
}

.price-list tr td:first-child,
.price-list tr td:nth-child(2),
.price-list tr td:nth-child(3) {
  width: 100%;
 }*/


/* / プライス -------*/


  /* ブログ -------*/
  .diary-wrap {
    display: block;
    margin: 60px auto 0;
    min-width: 90%;
    max-width: 90%;
  }

  .diary-list {
    display: block;
    margin-right: 0;
  }

  .diary-list li {
    background: #fbfbfb;
    margin-bottom: 40px;
    position: relative;
    min-height: 85vw;
    width: 100%;
    /*height: 20vw;*/
  }

  .diary-list li div {
    width: 100%;
    height: 60vw;
    overflow: hidden;
  }

  .top-works-box .diary-list li { /*トップページの表示*/
    background: #fbfbfb;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
  }

  .top-works-box .diary-list li div {
    width: 100%;
    height: 60vw;
    overflow: hidden;
  }

  .diary-list li img {
    height: 100%;
    /*width: 100%;
    object-fit: cover;*/
  }

  .diary-side-cont {
    min-width: 100%;
  }

  /* / ブログ -------*/


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

  .nallow-box {
    margin: 40px auto 0;
    width: 92%;
  }
  
  .nallow-box h3,
  .liststyle01 li {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }


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



/* end ページレイアウト
--------------------------------------*/

  

/* フッター
--------------------------------------*/
  
  /* お問い合わせ */
  .contact-bottom-area {
    margin: 130px auto 0;
    width: 80%;
  }
  /* / お問い合わせ */
  
  .footer {
    display: block;
  }
  
  .f-navi {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px;
    width: 90%;
  }
  
  .f-navi li {
    margin-right: 0;
  }
  
  .f-sns-link {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
  }
  
  .f-sns-link li {
    margin: 0 auto;
    width: 30px;
  }
  
  .copy {
    text-align: center;
  }
  
  
  /* トップへ戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    left: 3%;
    height: 52px;
    width: 17px;
  }
  

/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/