@charset "UTF-8";
/*
Theme Name: Kertoa. Theme 2026
Theme URI: http://wasabi-d.com
Description: Kertoa. サイトテーマ
Version: 1.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 {

}


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

p {
  color: #333;
  font-family: var(--fontgothic);
  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: #00479D; /* 基本色 */
  --secondcolor: #02B3B0;
  --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: "Zen Kaku Gothic New", sans-serif;
  --en-lang: "Josefin Sans", sans-serif;
  --menu-en: "Poppins", sans-serif;

}

.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;
}

@keyframes line-movein {
  0% {
    transform-origin: left;
    transform: scale(0, 1);
  }

  100% {
    transform-origin: left;
    transform: scale(1, 1);
  }
}

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


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


/* ヘッダー
---------------------------------------------*/
#header-wrap {
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100vw;
  z-index: 10000;
  background-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);
}

.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 {
  padding-top: 15px;
}

.header-nav > ul {
  color: #000;
  display: flex;
}

.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 {
  color: #000;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: var(--menu-en);
  font-size: 1.1em;
  font-weight: 500;
}

.header-nav > ul > li a::after,
.global-nav_item a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--basecolor);
  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: #838383;
  display: block;
  font-family: var(--fontgothic);
  font-size: .65em;
  padding-top: 5px;
  font-weight: 400;
}

.sub-nav {
  background-color: #f9f9f9;
  display: none;
  position: absolute;
  overflow: hidden;
  font-family: var(--en-lang);
  left: 0;
  top: 2.1em;
  width: 8em;
  z-index: 10000;
}

.sub-nav > li > a {
  border-bottom: solid 1px #fff;
  display: block;
  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 {
  display: none;
}


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


/* 共通設定
---------------------------------------------*/

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

.btn001 a {
  background: #fff;
  border: 1px solid var(--secondcolor);
  color: var(--secondcolor);
  display: block;
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 600;
  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 var(--secondcolor);
  border-right: 1px solid var(--secondcolor);
  content: '';
  width: 40px;
  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: var(--secondcolor);
  /*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: 5px;
  width: 360px;
}

.btn001.contact-btn a {
  background: #00479D;
  background: linear-gradient(90deg,rgba(0, 71, 157, 1) 0%, rgba(0, 134, 167, 1) 100%);
  border: 2px solid #fff;
  text-align: center;
  font-family: var(--fontgothic);
  font-size: var(--f4);
  color: #fff;
  height: 80px;
  line-height: 80px;
  padding: 0 30px;
  width: 300px;
}

.btn001.contact-btn a::after {
  background: #fff;
  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.contact-btn a:hover {
  opacity: 1;
  color: #00479D;
}

.btn001.contact-btn a:hover::after {
  transform: scale(1, 1);
}

.btn001.contact-btn a::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  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 #00479D;
  border-right: 1px solid #00479D;
}

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

.btn-radius a {
  border: 2px solid #02B3B0;
  border-radius: 50px;
}

.btn002 a {
  color: var(--secondcolor);
  display: block;
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 600;
  text-align: right;
  height: 36px;
  width: 170px;
  line-height: 36px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  z-index: 1;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

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

.btn002 a::after {
  border-bottom: 1px solid #009e96;
  border-right: 1px solid #009e96;
  content: '';
  width: 120px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 15px;
  transform: skew(45deg) scale(0, 1);
  transform-origin: top left;
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn002 a:hover::before {
  display: none;
}

.btn002 a:hover::after {
  transform: skew(45deg) scale(1, 1);
}

.btn002--wrap {
  display: grid;
  justify-items: end;
}



/* / ボタンの設定 */

/* / 共通設定
---------------------------------------------*/


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

/* 理念 */
.main__visual--wrap {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  align-items: center;
  position: relative;
}

.main__visual {
  width: 45vw;
}

.main__motto--upper,
.main__motto--lower {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0 0 10px 0;
}

.main__motto01 {
  width: 5.6vw;
  margin: 0 .4vw;
}

.main__motto02 {
  width: 5.8vw;
  margin: 0 .4vw;
}

.main__motto03 {
  width: 4.8vw;
  margin: 0 .8vw;
  padding: .5vw 0 0 0;
}

.main__motto04 {
  width: 4.3vw;
  margin: 0 .8vw;
}

.main__motto05 {
  width: 4vw;
  margin: 0 .8vw;
}

.main__motto06 {
  width: 5vw;
  margin: 0 .8vw;
}

.main__motto07 {
  width: 4.5vw;
  margin: 0 .8vw;
}

.main__motto08 {
  width: 4.3vw;
  margin: 0 .3vw;
}

.main__motto09 {
  width: 3.7vw;
  margin: 0 .3vw;
  padding: .5vw 0 0 0;
}

.main__motto10 {
  width: 2.8vw;
  margin: 0 .4vw;
  padding: .7vw 0 0 0;
}

.main__motto11 {
  width: 4.3vw;
  margin: 0 .2vw;
}

.main__motto12 {
  width: 4.3vw;
  margin: 0 .2vw;
}

.main__motto13 {
  width: 3.2vw;
  margin: 0 .2vw;
}

.main__motto14 {
  width: 3.5vw;
  margin: 0 .4vw;
  padding: .2vw 0 0 0;
}

.main__motto15 {
  width: 2.5vw;
  margin: 0 .5vw;
  padding: .7vw 0 0 0;
}

.main__motto16 {
  width: 3vw;
  margin: 0 .3vw;
  padding: .8vw 0 0 0;
}

.main__motto17 {
  width: 4.1vw;
  margin: 0 .2vw;
}

.main__motto18 {
  width: 3.4vw;
  margin: 0 .3vw;
}

.main__motto19 {
  width: 3.4vw;
  margin: 0 .2vw;
}

.main__motto--upper div,
.main__motto--lower div {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(6px);
  transition: 
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  will-change: transform, opacity, filter;
}

.main__motto--upper div.is-animated,
.main__motto--lower div.is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}



/* / 理念 */

/* スクロールダウンの位置 */
.scroll-down {
  position: absolute;
  right: 50%;
  bottom: 80px;
  color: #777;
  font-family: var(--fontgothic);
  font-size: var(--f6);
  /*writing-mode: vertical-rl;*/
}
/* 線のアニメーション部分 */
.scroll-down::before {
  animation: scroll-down 2s infinite;
  background-color: #aaa;
  bottom: -80px;
  content: "";
  height: 70px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/* 画像のアニメーション */
.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: #efefef;/*伸びる背景色の設定*/
}
@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: #efefef;/*伸びる背景色の設定*/
}
@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--wrap {
  margin: 100px auto;
  max-width: 1100px;
  width: 80vw;
  height: 100vh;
  display: grid;
  align-items: center;
}

.top__message--wrap p {
  font-size: var(--f3);
  line-height: 5;
  font-family: var(--fontgothic);
}

.line-anime {
  position: relative;
  z-index: 10;
  display: inline-block;
}

.line-anime::after {
  content: "";
  position: absolute;
  bottom: 1.7em;
  left: 0;
  width: 100%;
  height: 13%;
  background-color: #C6ECFF;
  z-index: -1;
  transform-origin: left;
  transform: scale(0, 1);
}

.line-anime.show::after {
  animation: line-movein 1s forwards;
}

/* / メッセージ */


/* プロフィール */
.heading {
  font-family: var(--en-lang);
  font-size: 2.8125em;
  font-weight: 500;
  color: var(--basecolor);
  margin: 0 auto 30px;
  text-align: center;
}

.top__profile--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 80vw;
  margin: 0 auto 150px;
}

.top__profile--info {
  width: 48%;
}

.top__profile--info p {
  color: #333;
  font-family: var(--fontgothic);
  font-size: 1.125em;
}

.top__profile--img--box {
  width: 48%;
  display: grid;
  place-items: center;
  align-items: center;
}

.top__profile--img {
  width: 184px;
  height: 184px;
  border: solid 5px #E7E7E7;
  border-radius: 50%;
}
/* / プロフィール */


/* サービス */
.top__service--wrap {
  max-width: 1100px;
  width: 80vw;
  margin: 0 auto 100px;
}

.top__service--box--reverse {
  flex-direction: row-reverse;
}

.top__service--box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 80px;
}

.top__service--info,
.top__service--img {
  width: 48%;
}

.top__service--info h3 {
  font-family: var(--en-lang);
  font-size: var(--f2);
  font-weight: 500;
  margin-bottom: 30px;
}

.top__service--info p {
  font-family: var(--en-lang);
  font-size: var(--f5);
  color: #333;
}

/* / サービス */

/* 実績 */
#top__works {
  clear: both;
  width: 80vw;
  max-width: 1100px;
  margin: 0 auto 100px;
}

.top__works--box {
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.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 {
  margin: 10px auto 100px;
  padding-top: 50px;
  max-width: 1100px;
  width: 80vw;
}

.top-info-list {
  margin: 0 auto;
  width: 100%;
}

.top-info-list li {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  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;
  max-width: 1100px;
  width: 80vw;
}

.content-box01 {
  margin: 60px auto;
  max-width: 1100px;
  width: 80vw;
  
}

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

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

.page__ttl--wrap {
  margin: 0 auto 30px;
  padding-top: 100px;
  width: 80vw;
  max-width: 1100px;
}

/*.page h2,*/
.signle h2 {
  font-size: var(--f2);
  font-family: var(--fontgothic);
}

/* 検索結果 */
.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;
}

/* / ページ設定
---------------------------------------------*/


/* プロフィール
---------------------------------------------*/

.philosophy {
  font-family: var(--fontmincho);
  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;
}

.profile__mess {
  font-family: var(--fontgothic);
  font-size: var(--f4);
  font-weight: 300;
  line-height: 2.5;
  margin-bottom: 50px;
}

.profile__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  padding: 5%;
  border: solid 1px #6F6F6F;
  margin: 100px auto;
}

.office-date {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  width: 65%;
  }

  .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;
  }

  .profile__img--box {
    width: 30%;
    display: grid;
    place-items: center;
  }

  .profile__img {
    width: 188px;
    height: 187px;
    border: solid 5px #E7E7E7;
    border-radius: 50%;
  }


/* / プロフィール
---------------------------------------------*/


/* サービス
---------------------------------------------*/
.page__block1--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}

.page__block1--txt {
  width: 40%;
}

.page__block1--img {
  width: 50%;
}

.heading--middle {
  font-family: var(--en-lang);
  font-size: var(--f2);
  font-weight: 500;
  margin-bottom: 30px;
}

.heading--small {
  font-family: var(--fontgothic);
  font-size: var(--f4);
  font-weight: 600;
  margin: 40px 0 20px;
}

.wp-block-table.table__price--style01 td {
 border-top: none;
 border-left: none;
 border-right: none;
 border-bottom: solid 1px #BCBCBC;
}

.table__price--style01 {
  margin-bottom: 20px;
}

.table__price--style01 td {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  padding-bottom: .5em;
  padding-top: .5em;
}

.table__price--style01 tr td:last-child {
  text-align: right;
}

.page__block1--img {
  margin-top: 50px;
}

.graphic--service--wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.graphic--service--wrap::after {
  content: "";
  width: 30%;
}

.graphic--service {
  width: 30%;
}

.graphic--service--img {
  margin: 0 auto 5px;
  height: 190px;
  display: grid;
  place-items: center;
}

.graphic--service--img01 img {
  width: 118px;
  margin:  auto;
}

.graphic--service--img02 img {
  width: 132px;
  margin:  auto;
}

.graphic--service--img03 img {
  width: 200px;
  margin:  auto;
}

.graphic--service--img04 img {
  width: 200px;
  margin:  auto;
}

.graphic--service--img05 img {
  width: 108px;
  margin:  auto;
}

.graphic--service--img06 img {
  width: 170px;
  margin:  auto;
}

.graphic--service--img07 img {
  width: 108px;
  margin:  auto;
}

.graphic--service--img08 img {
  width: 142px;
  margin:  auto;
}

.graphic--service h4 {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 600px;
  text-align: center;
  margin-bottom: .5em;
}

.graphic--service p {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  height: 5.5em;
}

p.graphic--price {
  background-color: #F4F4F4;
  text-align: center;
  padding: .2em 0;
  height: auto;
}


.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 120px;
}

.workflow {
  
}

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

.workflow dt {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 600;
}

.workflow dd {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  border-bottom: solid 1px #848484;
  line-height: 1.5;
  margin: -10px 0 30px 0;
  padding: 0 0 30px 4.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(--fontgothic);
  font-size: 1.125em;
  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%;
}

/* / サービス
---------------------------------------------*/


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

.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: var(--f5);
  font-family: var(--fontgothic);
  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-family: var(--fontgothic);
    font-size: var(--f5);
    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: .875em;
    font-family: var(--fontgothic);
  }

  .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: var(--f6);
    font-family: var(--fontgothic);
  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: .875rem;
  font-family: var(--fontgothic);
  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 ページネーション*/


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


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

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

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

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

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

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

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

  .must {
    color: #3c9a76;
    font-size: .875em;
    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: var(--f5);
    font-family: var(--fontgothic);
    padding: 17px 10px;
    width: 100%;
  }

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

  .contact-form th p {
    text-align: left;
  }

  .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: 1.125em;
    font-family: var(--fontgothic);
    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;
  width: 100%;
}

.diary-wrap p {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  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%;
}

.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: var(--f6);
  font-family: var(--fontgothic);
  position: absolute;
  text-align: center;
  width: 5em;
  right: 0;
  top: 0;
  z-index: 500;
}

.diary-list li p.day {
  font-size: var(--f6);
  font-family: var(--fontgothic);
  font-weight: 500;
  margin: 0 5px;
}

.diary-list li .diary-tit {
  font-family: var(--fontgothic);
  font-size: 1.12em;
  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 {
  font-size: var(--f5);
  font-family: var(--fontgothic);
  color: #565656;
  line-height: 1.3;
  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: #333;
  font-size: var(--f3);
  font-family: var(--fontgothic);
  margin-bottom: 10px;
  padding: 5px 5px 10px 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: var(--f5);
  font-family: var(--fontgothic);
  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(--fontgothic);
  font-size: var(--f2);
  margin-bottom: 30px;
}

.diary-cate-tit span {
  font-size: .75em;
}

.tablestyle001 {
  font-size: var(--f5);
  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-family: var(--fontgothic);
    font-size: var(--f5);
    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: var(--f4);
  font-family: var(--fontgothic);
}

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

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

.pagaCate p span {
  border: solid 1px #909090;
  border-radius: 5px;
  font-size: .875em;
  font-family: var(--fontgothic);
  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(--fontgothic);
  font-size: var(--f3);
  padding: 5px 10px;
  margin: 50px 0 15px;
}

.single h4 {
  font-family: var(--fontgothic);
  font-size: var(--f4);
  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;
}




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



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

/* お問い合わせ */
#contact__bottom {
  background: #F7F7F7;
  height: 310px;
  padding-top: 60px;
  width: 100%;
}

#contact__bottom .heading {
  text-align: center;
}

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

.contact__bottom--area {
  margin: 20px auto 0;
  text-align: center;
  width: 600px;
}

.contact__bottom--area p {
  font-size: var(--f5);
}

.top__contact--btn {
  width: 360px;
  margin: auto;
}

/* / お問い合わせ */

#footer__wrap {
  border-top: solid 1px #333;
  margin: 0 auto 0;
  position: relative;
  width: 100%;
}

.footer {

}

.f-navi {
  display: flex;
  justify-content: center;
  width: 50%;
  margin: 30px auto 30px;
}

.f-navi li {
  font-family: var(--menu-en);
  font-size: .9em;
  margin: 0 15px;
}

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

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

.f-sns-link {
  display: flex;
  justify-content: center;
  margin: 15px auto;
}

.f-sns-link li {
  margin: 0 10px;
  width: 38px;
}

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

.f-sns-link li img:hover {
  opacity: .7;
}
  
.copy {
  font-family: var(--fontgothic);
  font-size: var(--f6);
  text-align: center;
  margin: 10px auto 20px;
  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 フッター
---------------------------------------------*/




/* ========================================== 
レスポンシブ調整（スマホレイアウト）
============================================= */
@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;
}
  
  
/* ハンバーガーメニュー */
.toggle-btn {
  display: block;
  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);
}

  
/* メニュー背景 */
.header-nav {
  position: fixed;
  z-index : 25;
  top : 0;
  right : 0;
  color: #333;
  background: rgb(213, 213, 213);
  text-align: center;
  width: 100vw;
  padding: 2vh 0 10vh;
  height: 88vh;
  overflow-y: auto;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all ease .7s;
}

.header-nav ul {
  width: 90vw;
  margin: 40px auto 0;
  display: block;
  position: relative;
  z-index: 5;
  opacity: 1;
}

.header-nav ul li {
  font-size: 1.25em;
  text-align: center;
  padding: 2em 0;
  border-bottom: solid 1px #838383;
  width: 100%;
}

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

.header-nav ul li span {
  display: block;
}

/* クリックでjQueryで追加・削除 */
.header-nav.panel-open {
  opacity: 1;
  visibility: visible;
}


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

  
/* 共通設定
--------------------------------------*/
  
/* ボタンアニメーション */
  .btn001.contact-btn {
    width: 100%;
  }

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

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

.main__visual {
  width: 96vw;
}

.main__motto01 {
  width: 13.4vw;
  margin: 0 .4vw;
}

.main__motto02 {
  width: 13.7vw;
  margin: 0 .4vw;
}

.main__motto03 {
  width: 12vw;
  margin: 0 .8vw;
  padding: 1.5vw 0 0 0;
}

.main__motto04 {
  width: 10.6vw;
  margin: .5vw .8vw 0;
}

.main__motto05 {
  width: 10.1vw;
  margin: .8vw .8vw 0;
}

.main__motto06 {
  width: 12vw;
  margin: 1vw .8vw 0;
}

.main__motto07 {
  width: 11vw;
  margin: 1.5vw .8vw 0;
}

.main__motto08 {
  width: 8.6vw;
  margin: 0 .3vw;
}

.main__motto09 {
  width: 7.4vw;
  margin: 0 .3vw;
  padding: .5vw 0 0 0;
}

.main__motto10 {
  width: 5.6vw;
  margin: 0 .4vw;
  padding: .7vw 0 0 0;
}

.main__motto11 {
  width: 8.6vw;
  margin: 0 .2vw;
}

.main__motto12 {
  width: 8.6vw;
  margin: 0 .2vw;
}

.main__motto13 {
  width: 6.4vw;
  margin: 0 .2vw;
}

.main__motto14 {
  width: 7vw;
  margin: 0 .4vw;
  padding: .2vw 0 0 0;
}

.main__motto15 {
  width: 5vw;
  margin: 0 .5vw;
  padding: .7vw 0 0 0;
}

.main__motto16 {
  width: 6vw;
  margin: 0 .3vw;
  padding: .8vw 0 0 0;
}

.main__motto17 {
  width: 8.2vw;
  margin: 0 .2vw;
}

.main__motto18 {
  width: 6.8vw;
  margin: 0 .3vw;
}

.main__motto19 {
  width: 6.8vw;
  margin: 0 .2vw;
}

.scroll-down {
  bottom: 50px;
}

.scroll-down::before {
  bottom: -50px;
  height: 40px;
}

/* メッセージ */
.top__message--wrap {
  margin: 60px auto;
  max-width: 90vw;
  width: 90vw;
  height: 100vh;
  display: grid;
  align-items: center;
}

.top__message--wrap p {
  font-size: .875em;
  line-height: 3;
  font-family: var(--fontgothic);
}

.line-anime::after {
  content: "";
  position: absolute;
  bottom: .7em;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: #C6ECFF;
  z-index: -1;
  transform-origin: left;
  transform: scale(0, 1);
}

/* / メッセージ */


/* プロフィール */
.top__profile--wrap {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 90vw;
  width: 90vw;
  margin: 0 auto 80px;
}

.top__profile--info,
.top__profile--img--box {
  width: 100%;
}

.top__profile--info p {
  font-size: var(--f5);
}

.top__profile--img--box {
  margin-top: 20px;
}

/* / プロフィール */
  
  
/* サービス */
.top__service--wrap {
  max-width: 100vw;
  width: 100vw;
  margin: 0 auto 80px;
}

.top__service--box {
  display: block;
  width: 100%;
  margin: 0 auto 40px;
}

.top__service--info {
  width: 90%;
  margin: 10px auto;
}

.top__service--img {
  width: 100%;
}

/* / サービス */


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


/* インフォメーション */
#top__information {
  margin: 10px auto 100px;
  padding-top: 40px;
  max-width: 90vw;
  width: 90vw;
}
/* / インフォメーション */


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

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

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

#main-cont {
  margin: 50px auto;
  max-width: 90vw;
  width: 90vw;
}
  
  .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);
  }

  .profile__mess {
  font-family: var(--fontgothic);
  font-size: var(--f4);
  font-weight: 300;
  line-height: 2;
  margin-bottom: 40px;
  }

.profile__wrap {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 96%;
  padding: 5%;
  border: solid 1px #6F6F6F;
  margin: 100px auto;
  }
  
  .office-date {
    font-family: var(--fontgothic);
    font-size: var(--f5);
    width: 90%;
    margin: 20px auto;
  }
  
  .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;
    padding-bottom: 10px;
  }

  .profile__img--box {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 20px 0;
  }

  .profile__img {
    width: 188px;
    height: 187px;
    border: solid 5px #E7E7E7;
    border-radius: 50%;
  }
  
  /* / プロフィール
  ---------------------------------------------*/
  
  
  /* サービス
  ---------------------------------------------*/
.page__block1--wrap {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}

.page__block1--txt {
  width: 100%;
}

.page__block1--img {
  width: 100vw;
  margin-left: -5vw;
  margin-top: 10px;
}

.graphic--service--wrap {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
}

.graphic--service {
  width: 100%;
}

.graphic--service p {
  height: auto;
}

.workflow--wrap {
  margin: 50px 0 120px;
}

.workflow--num {
  border-radius: 50%;
  border: solid 1px #000;
  display: block;
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 400;
  margin-right: 1em;
  margin-bottom: .7em;
  padding: 1em 0;
  width: 3em;
  text-align: center;
}

.workflow dt {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  font-weight: 600;
}

.workflow dd {
  font-family: var(--fontgothic);
  font-size: var(--f5);
  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%;
}


  /* / サービス
  ---------------------------------------------*/
  
  
  /* 制作実績
   ---------------------------------------------*/
  .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-family: var(--fontgothic);
    font-size: var(--f5);
    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-family: var(--fontgothic);
    font-size: var(--f5);
  }
  
  /* / お問い合わせ
   ---------------------------------------------*/


/* プライス
 ---------------------------------------------*/
.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-family: var(--fontgothic);
    font-size: var(--f5);
    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;
  }


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



  

/* フッター
--------------------------------------*/
  
  /* お問い合わせ */
#contact__bottom {
  background: #F7F7F7;
  height: 250px;
  padding-top: 60px;
  width: 100%;
}

.page #contact__bottom {
  margin-top: 40px;
}

.contact__bottom--area {
  margin: 20px auto 0;
  text-align: center;
  width: 80vw;
}

.top__contact--btn {
  width: 80vw;
  margin: auto;
}

  /* / お問い合わせ */
  
  .footer {
    
  }
  
  .f-navi {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px auto;
    width: 50%;
  }
  
  .f-navi li {
    margin: 10px 20px;
  }
  
  .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 レスポンシブ調整（スマホレイアウト）
============================================= */