/*
theme Name: Tigro
Author: Tigro合同会社
Description: original theme
version： 1.0.0
*/

:root {
    --color-main: #333;
    --color-theme: #033059;
    --color-background: #fff;
    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Cormorant Garamond", serif;
    --font-en2: "Crimson Text", serif;
    --gradient-primary: linear-gradient(300deg, #ffd688, #ffe3af);
}


html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 8vh;
    }

    [id] {
        scroll-margin-top: 8vh;
    }
}

@media (max-width: 767px) {
    [id] {
        scroll-margin-top: 4vh;
    }
}

body {
    font-family: var(--font-main);
    line-height: 1.8;
    color: var(--color-main);
    font-weight: 500;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.95);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .main-nav.is-active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 2rem;
    }
}


.pc_block {
    display: block;
}

.sp_block {
    display: none !important;
}

br.sp_block,
.sp_inlineblock {
    display: none !important;
}

.pc_inlineblock {
    display: inline-block;
}

p.center {
    text-align: center;
}

.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap.sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

p.mb {
    margin-bottom: .7em;
}

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

.js-animation {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

.js-animation.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

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

header {
  height: 12vh;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}

.site-title-wrap {
    width: 17%;
    height: 12vh;
}

.site-title-wrap a {
  height: 12vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-title-wrap img {
        width: 70%;
    height: auto;
    margin: 0 auto;
}

.header-inner {
       width: 97%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

nav#g-nav {
    width: 76%;
}

header #nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header #nav-list {
  width: 100%;
}

header nav ul {
  width: 97%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 12vh;
  margin: 0 0 0 auto;
}

header .nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 19%;
}

header nav ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

header nav ul li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1vw;
  letter-spacing: 0.2em;
  color: #333;
  line-height: 1.6;
}

header li.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav ul li a:hover {
  color: #ffe3af;
}

header nav ul li a::after {
  content: '';
  display: block;
  height: .9px;
  width: 80%;
  background: #ffe3af;
  position: absolute;
  bottom: 1.9vw;
  left: 10%;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

header nav ul li.contact a::after {
  content: unset;
}

header nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

header nav ul li.company a {
  margin-right: 1vw;
}

header nav ul li.contact a {
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 1.1vw;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    background: rgba(125, 170, 220, 1);
    padding: 1vw 2vw;
    border-radius: 10vw;
}


header nav ul li.contact a:hover,
.mv-copy .link a:hover {
  opacity: .7;
}

/*---------------------------------------------------------
メインビジュアル
---------------------------------------------------------*/

.mv {
    margin-top: 12vh;
    height: 88vh;
}

.mv__inner{
  position: relative;
    width: 100%;
    height: 100%;
}

.mv__inner::before{
     content: "";
    position: absolute;
    width: 72%;
    height: 97.5%;
    background-image: url(https://hp10.veronica9.com/wp-content/uploads/2026/02/pixta_124065451.webp);
    background-size: cover;
    background-position: 0 35%;
    border-radius: 1.5vw;
    right: 1vw;
}


.mv__card{
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;

  margin: 0;
  padding: 3.2vw 3.4vw;
  border-radius: 1.8vw;
  background: rgba(255,255,255,0.96);

  box-shadow: 0 1.2vw 3vw rgba(0,0,0,0.14);
  z-index: 2;
}

.mv__lead{
      margin-bottom: .5vw;
    font-size: 1.35vw;
    letter-spacing: .1vw;
}

.mv__title{
       font-size: 3.7vw;
    line-height: 1.4;
    color: rgba(30, 120, 200, 1);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5vw;
    background: linear-gradient(247deg, #368ff2 0%, #32acde 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .1vw;
}

.mv__pill{
  margin: 0;
  padding: 1.1vw 2vw;
  font-size: 1.25vw;
  line-height: 1;
  font-weight: 600;
  text-align: center;

  color: #fff;
  background: #7daadc;
  border-radius: 10vw;
	    letter-spacing: .1vw;
}


/*---------------------------------------------------------
  footer
  ---------------------------------------------------------*/

footer#footer {
    position: relative;
    background: #033059;
}

.footer-inner {
    padding: 8vh 0 6vh;
}

.footer_logo img {
    width: 26%;
    margin: 0 auto;
}

footer#footer .link a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: .5vh 5vw;
    display: block;
    text-align: center;
    margin: 3vh auto;
    background: -o-linear-gradient(150deg, rgb(255 214 136), rgb(255 227 175));
    background: linear-gradient(300deg, rgb(255 214 136), rgb(255 227 175));
    font-size: 1.2rem;
    letter-spacing: .05vw;
    font-weight: 500;
    position: relative;
    border-radius: 50px;
}

.sns-wrap.flex-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 18%;
    margin: 4vh auto 0;
    position: relative;
    left: 1vw;
}

.sns-box {
    width: 34%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sns-box.tw {
    width: 14%;
}

.sns-box.tw img {
    width: 58%;
}

.sns-box.no img {
    width: 81%;
}

.sns-box.la img {
    width: 100%;
}

.copyright p {
    color: #ffffff;
    text-align: center;
    font-size: .9rem;
    font-weight: 500;
    font-family: var(--font-en);
    letter-spacing: .05vw;
    padding-left: 1vw;
}

a.topBtn {
    display: grid;
    place-content: center;
    width: 4vw;
    height: 4vw;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

a.topBtn.is-visible {
    opacity: 1;
    visibility: visible;
}

a.topBtn::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--gradient-primary);
    opacity: 0.8;
}

a.topBtn::after {
    width: 1vw;
    height: 1vw;
    content: "";
    border: solid #033059;
    border-width: 2.5px 2.5px 0 0;
    margin-top: 0.7vw;
    transform: rotate(-45deg);
}

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

section.page-mv {
    height: 25vh;
    position: relative;
    margin-top: 12vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #033059;
    background-size: cover;
    position: relative;
    background-position: 0% 70%;
}

section.page-mv::after {
    background: rgb(3 48 89 / 64%);
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.h1-wrap {
    text-align: center;
    position: relative;
    z-index: 1;
}

section.page-mv h1 {
    font-weight: 500;
    font-size: 2.3rem;
    color: #ffe3af;
    letter-spacing: .5vw;
}

.page-id-3 section.page-mv h1,
.page-id-861 section.page-mv h1 {
    font-size: 5.5rem;
}

.h1-wrap p {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--font-en);
    color: #fff;
    letter-spacing: .2vw;
}

.h1-wrap img.logo {
    position: absolute;
    width: 4.5vw;
    top: -.5vw;
    left: 55%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    opacity: .6;
}

.breadcrumb {
    width: 90%;
    margin: 0 auto;
    font-size: .9rem;
    padding-top: 1vh;
}

/*---------------------------------------------------------
サービス・料金
---------------------------------------------------------*/


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


/*---------------------------------------------------------
対応範囲一覧
---------------------------------------------------------*/

/*---------------------------------------------------------
取引企業
---------------------------------------------------------*/

/*---------------------------------------------------------
お客様の声
---------------------------------------------------------*/


/*---------------------------------------------------------
Q&A
---------------------------------------------------------*/


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

.page.container.blog .inner {
    max-width: 72%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7vh 0 10vh;
}

section.blog_wrap {
    width: calc(100% - 30%);
    padding-right: 4rem;
}

article.article-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 3vh;
    padding: 3vh 2vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 17%);
    box-shadow: 0px 5px 7px 2px rgb(120 120 120 / 22%);
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border: 1px solid #E0E0E0;
}

article.article-list .img-wrap {
    width: 37%;
    height: auto;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

article.article-list .text {
    width: 60%;
    position: relative;
}

article.article-list .text h2 {
    font-size: 1.2rem;
    margin-bottom: .2em;
    line-height: 1.4;
    font-weight: 600;
}

article.article-list a {
    text-decoration: none;
    width: 100%;
}

article.article-list a img {
    width: 100%;
}

.cat-day {
    position: relative;
}

ul.post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

ul.post-categories a {
    background: #033059;
    display: inline;
    color: #fff;
    padding: .2em 1em;
    margin-right: .5em;
    font-size: .8rem;
}

ul.post-categories li {
    list-style: none;
}

article.article-list p.article-date {
    position: absolute;
    top: 0;
    right: 0;
}

article.article-list .archive-text {
    margin-top: 1vh;
    line-height: 1.6;
}

.pagination {
    margin: 2rem 0;
    text-align: center;
}

.pagination ul {
    font-size: 0;
}

.pagination ul li {
    font-size: 1rem;
    display: inline-block;
    margin-right: .5vw;
}

.pagination ul li:last-child {
    border: 0;
}

.pagination ul li a,
.pagination .current {
    display: block;
    padding: .5vh 1vw;
    border: 1.5px solid #033059;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

i.fas.fa-angle-right,
i.fas.fa-angle-left {
    color: var(--color-theme);
}

.pagination ul li .prev,
.pagination ul li .next {
    border: 0;
}

.pagination ul li a {
    text-decoration: none;
    color: var(--color-theme);
    font-weight: 500;
}

.pagination ul li a:hover {
    opacity: .6;
}

.pagination .current {
    color: #fff;
    background-color: var(--color-theme);
}


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

span.cat-data a {
    background: #033059;
    display: inline;
    color: #fff;
    padding: .2em 1em;
    margin-right: .5em;
    font-size: .8rem;
}

.single h1 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .02vw;
    line-height: 1.6;
}

.article-date {
    text-align: right;
    margin-bottom: 3vh;
    font-size: 1rem;
}

span.st-mymarker-s {
    background: -o-linear-gradient(transparent 70%, #d4dff4 0%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #d4dff4));
    background: linear-gradient(transparent 70%, #d4dff4 0%);
    font-weight: 700;
}

.fixed-page h2,
.single article h2 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 5vh auto 3vh;
    padding: 2vh 1vw;
    border-left: .25vw solid #033059;
    line-height: 1;
    background-color: #f7f7f7;
}

.fixed-page h3,
.single article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh .5vw;
    border-bottom: 2px solid #033059;
}

.fixed-page h4,
.single article .blog-main h4 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh 1.2vw 0;
    position: relative;
}

.fixed-page h4::before,
.single article h4::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.3vw;
    left: 0;
    width: .7vw;
    height: .7vw;
    background-color: var(--color-theme);
}

.fixed-page h5,
.single article h5 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh 0 0;
    position: relative;
}

.fixed-page .inner p,
.single article p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 3vh;
    line-height: 2;
}

.fixed-page .inner ul,
.single .blog-main ul,
.fixed-page .inner ol,
.single .blog-main ol {
    margin: 3vh auto 5vh;
    padding: 3vh 1vw 3vh 2.5vw;
    background-color: #f7f7f7;

}

.fixed-page .inner ul ul,
.single .blog-main ul ul {
    margin-top: unset;
    margin-bottom: .7vw;
    margin-left: 0;
}

.fixed-page .inner ul li,
.single .blog-main ul li {
    list-style-type: disc;
    font-size: 1.2rem;
    margin-bottom: .7vh;
}

.fixed-page .inner ol li,
.single .blog-main ol li {
    font-size: 1.2rem;
    margin-bottom: .7vh;
}

.fixed-page .inner ul ul li,
.single .blog-main ul ul li {
    list-style: none;
}

.single article p.box-title {
    position: relative;
    top: 5vh;
    background: #033059;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 2vw;
    letter-spacing: .1vw;
    margin-top: 0;
}

.fixed-page figure,
.single article figure {
    margin: 3vh 0;
}

.single article p.article-date {
    font-size: 1rem;
    margin-top: 0;
    text-align: right;
}

.page_sns {
    width: 48%;
    margin: 0 auto;
}


.single section.page-mv p.title {
    font-size: 6rem;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    line-height: .9;
    position: relative;
    z-index: 1;
    text-align: center;
}

.single .contents {
    width: 60%;
    margin: 10vh auto;
}

section.single-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.page.single .inner {
    max-width: 72%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3vh 0;
}

section.blog_wrap {
    width: calc(100% - 30%);
    padding-right: 3vw;
}

article.article-content {
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.5em;
}

article.article-content p.cat-data a {
    background-image: -o-linear-gradient(43deg, #37c1ff, #30bdff);
    background-image: linear-gradient(47deg, #37c1ff, #30bdff);
    display: inline;
    color: #fff;
    padding: 0.5vh 1em;
    border-radius: 50px;
    margin-right: 0.5em;
    font-size: .8rem;
    text-decoration: none;
}

.article-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.blog_wrap table {
    margin: 3vh auto 5vh;
}

section.blog_wrap td,
section.blog_wrap th {
    border: 1.5px solid #033059 !important;
    padding: 1vh 1vw;
    font-size: 1.2rem;
}

.article-tag ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0 !Important;
}

.single .post p.tag {
    background: #333;
    color: #fff;
    text-align: center;
    width: 10%;
    border-radius: 4px;
    font-size: .9rem !important;
    padding: 0 0;
    margin-bottom: 0;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.single .post .article-tag ul {
    margin-bottom: 0;
    margin-left: 0;
}

.single article .article-tag ul li {
    list-style-type: none;
    list-style: none;
    padding-right: 1em;
    font-size: 1.2rem;
}

.article-tag a {
    text-decoration: none;
    color: var(--color-main);
    font-size: 1.2rem;
}

.article-tag a::before {
    background: no-repeat;
    width: 1.2vw;
    height: 2.2vh;
    background-image: url(https://hp6.veronica9.com/wp-content/uploads/2025/01/tag-n.svg);
    content: '';
    margin-right: .3vw;
    display: inline-block;
    top: .3vh;
    position: relative;
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 2em;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

blockquote {
    position: relative;
    border: 1px solid #607D8B;
    border-radius: .5vw;
    padding: 5vh 2vh 1vh;
    background: #f7f7f7;
    margin: 5vh auto;
}

blockquote:before {
    margin-right: 1em;
    display: block;
    position: absolute;
    width: 1.5vw;
    height: 1.5vw;
    background-image: url("https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    left: 1.5vh;
    top: 1.5vh;
}

blockquote:after {
    margin-right: 1em;
    display: block;
    position: absolute;
    width: 1.5vw;
    height: 1.5vw;
    background-image: url(https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    right: 0;
    bottom: .5vh;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

blockquote cite {
    display: block;
    font-size: 1rem;
    text-align: right;
    color: #9e9e9e;
    padding-right: 5vh;
}

.single article blockquote p {
    margin-top: 0;
}

blockquote a {
    display: block;
    text-align: right;
    margin-right: 2vw;
}

#ez-toc-container {
    border-width: 2px !important;
    border-radius: 0;
    margin-top: 5vh;
}

#ez-toc-container .ez-toc-toggle:checked+label {
    width: 100%;
}

div#ez-toc-container .ez-toc-title {
    font-size: 1.2rem;
    float: left;
}

#ez-toc-container a:visited {
    color: var(--color-main);
}

#ez-toc-container label {
    float: left !important;
    margin-left: 10px;
}

ul.ez-toc-list.ez-toc-list-level-1 {
    margin-top: 5vh !important;
}

#ez-toc-container ul.ez-toc-list a {
    display: block;
    border-bottom: 1px solid #eee;
    padding: .5vh;
    font-size: 1.2rem;
}

.ez-toc-title-container {
    display: block;
    width: 100%;
}

#ez-toc-container p.ez-toc-title {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.ez-toc-title-toggle {
    position: relative;
    top: 0;
    right: 0;
}

.blog-profile {
    border: 2px solid #033059;
    position: relative;
    margin-top: 7vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2vh 1vw 2vh;
}

.single article p.writhing {
    position: absolute;
    top: -2vh;
    margin-top: 0;
    background: #033059;
    color: #fff;
    width: 20%;
    text-align: center;
    letter-spacing: .15vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.blog-profile .flex-box.left {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-profile .flex-box.left img {
    width: 55%;
    border-radius: 50%;
    background: #f7f7f7;
}

.single article .blog-profile p.name {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: .1vw;
    color: var(--color-theme);
}

.single article .blog-profile .text-wrap p {
    font-size: 1.1rem;
    margin-top: 1vh;
    line-height: 1.8;
    font-weight: 500;
}

nav.page-nav {
    margin: 5vh auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-nav .prev-link {
    width: 49%;
    text-align: left;
    text-decoration: none;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-main);
    border: 2px solid #033059;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: .85rem;
    line-height: 1.5;
    padding: 1vh .7vw;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.page-nav .next-link {
    width: 49%;
    text-align: right;
    text-decoration: none;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-main);
    border: 2px solid #033059;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: .85rem;
    line-height: 1.5;
    padding: 1vh .7vw;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.page-nav .prev-link::before {
    content: "PREV";
    position: absolute;
    top: -.85em;
    left: 0;
    line-height: 1;
    color: var(--color-theme);
    font-size: 1.4rem;
    font-family: var(--font-en);
    letter-spacing: .1vw;
    font-weight: bold;
}

.page-nav .next-link:before {
    content: "NEXT";
    position: absolute;
    top: -.85em;
    right: 0;
    line-height: 1;
    color: var(--color-theme);
    font-size: 1.4rem;
    font-family: var(--font-en);
    letter-spacing: .1vw;
    font-weight: bold;
}

nav.page-nav a:hover {
    background: #ebf9ff;
}

.share {
    margin-bottom: 7vh;
    margin-top: 3vh;
    position: relative;
    z-index: 1;
}

.home .share,
.page-id-711 .share {
    width: 55%;
    margin: 0 auto;
}

.single article .share p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: .15vw;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    color: var(--color-theme);
    font-family: var(--font-en);
}

.single article .share ul {
    width: 40%;
    margin: 1vh auto 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-left: auto;
}

.share li {
    width: 31%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share li a,
.share li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.5vw;
    width: 2.5vw;
    border-radius: 50px;
}

.share li a {
    border-radius: 50px;
}

.share li button {
    border-radius: .1vw;
    width: 3.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share li button img {
    width: 66%;
}

.share li a:visited {
    opacity: .6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.facebook_share a {
    background-color: #1877f1;
    color: #ffffff;
}

li.facebook_share a img {
    width: 32%;
}

.line_share a {
    background-color: #1dcd00;
    color: #ffffff;
}

li.line_share a img {
    width: 63%;
}

.tweet_share a {
    background-color: #444;
    color: #fff;
}

li.tweet_share a img {
    width: 50%;
}

.share li a:hover {
    opacity: 0.6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

button.share-url {
    background-color: var(--color-theme);
    color: #ffffff;
}

.url-copied {
    display: none;
    position: absolute;
    bottom: -6vh;
    left: 67%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.url-copied span {
    background: #033059;
    color: #fff;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: .8rem;
    white-space: nowrap;
}

@media(max-width: 599px) {
    .share li {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .share li i {
        font-size: 1.3em;
        padding-top: 3px;
    }

    .share li a {
        font-size: .7rem;
    }

    .share li a svg {
        font-size: .95rem;
    }

    .share ul {
        width: 46%;
        margin: 3vw auto 0;
    }

    .share li a {
        height: 9.8vw;
        width: 9.8vw;
    }

    nav.page-nav {
        margin: 5vh 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
}

.related-post-wrap {
    margin: 5vh auto 0;
}

.related-post-wrap h4 {
    margin: 0 auto 2vh;
    font-size: 1.2rem;
    font-weight: 600;
    background: #f7f7f7;
    width: 100%;
    text-align: center;
    letter-spacing: .15vw;
    padding: .5vh 0;
}

.related-post-wrap ul {
    display: -ms-grid;
    display: grid;
    list-style: none;
    gap: .875em;
    -ms-grid-columns: 1fr .875em 1fr .875em 1fr .875em 1fr;
    grid-template-columns: repeat(4, 1fr);
}

.related-post a {
    display: block;
    text-decoration: none;
    color: #000;
}

.related-post a:hover {
    opacity: .6;
}

.related-post img {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    margin-bottom: .5vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.related-post .text-wrap {
    font-size: .8rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .related-post-wrap ul {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    width: 30%;
}

div#block-22 h2,
aside#sidebar h4 {
    font-size: 1.2rem;
    border-bottom: 2.5px solid #033059;
    margin-bottom: 2vh;
    padding-bottom: .5vh;
    font-weight: 600;
    letter-spacing: .1vw;
    color: var(--color-theme);
}

div#block-22 li a:first-of-type,
div#execphp-3 li a.np_img {
    width: 40%;
}

ul.wpp-list a.wpp-post-title {
    width: 57%;
    font-size: 1rem;
}

ul.wpp-list a img {
    width: 100%;
}

.wpp-thumbnail {
    margin: 0 !important;
}

.popular-posts.wpp-ajax {
    counter-reset: rank_number;
}

div#execphp-3 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidebar p.blog_title {
    line-height: 1.4;
    width: 57%;
}

.sidebar p.blog_title a {
    font-size: 1rem;
    font-weight: 600;
}

div#block-22 li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5vh;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

div#block-22 li::after {
    counter-increment: rank_number;
    content: counter(rank_number);
    display: block;
    position: absolute;
    left: 0;
    width: 2vw;
    height: 1.5vw;
    background: rgb(3 48 89 / 80%);
    color: #fff;
    font-size: .9rem;
    text-align: center;
}

ul.wpp-list li,
div#execphp-3 li {
    margin-bottom: 1em;
}

ul.wpp-list li:last-of-type,
div#execphp-3 li:last-of-type {
    margin-bottom: unset;
}

a.wpp-post-title,
.sidebar p.blog_title a {
    line-height: 1.4;
    font-weight: 600;
}

.sidebar p.blog_title {
    width: 57%;
}

ul.wpp-list li a:hover,
.Widget_newpost li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

aside#sidebar a {
    text-decoration: none;
}

aside#sidebar .widget_block {
    margin-bottom: 5vh;
}

a.np-title,
div#categories-3 a,
div#archives-3 a {
    color: var(--color-theme);
}

div#categories-3,
div#archives-3 {
    margin-top: 5vh;
}

div#categories-3 ul,
div#archives-3 ul {
    padding-left: 1em;
    list-style: none;
}

div#categories-3 li,
div#archives-3 li {
    padding: .5vh 0;
    font-size: 1.1rem;
}

div#categories-3 li::before,
div#archives-3 li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #033059;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}


/*---------------------------------------------------------
アーカイブ
---------------------------------------------------------*/

.archive.date section.blog_wrap h1,
.archive.category section.blog_wrap h1,
.archive.tag section.blog_wrap h1 {
    font-size: 1.5rem;
    margin-bottom: 1vh;
    color: var(--color-theme);
    letter-spacing: .05vw;
    font-weight: 600;
}


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

.table-res-form {
    width: 100%;
    margin-top: 5vh;
}


.table-res-form tr.td_last {
    border: unset;
}

.table-res-form th,
.table-res-form td {
    padding: 3vh 3vh 3vh 0;
}

.table-res-form th {
    font-size: 1.3rem;
    width: 27%;
    text-align: right;
    vertical-align: top;
    font-weight: 500;
}

.table-res-form th span.parentheses {
    font-size: 1rem;
    display: block;
    line-height: 1.5;
    margin-top: 1vh;
}

.table-res-form td {
    vertical-align: middle;
}

.table-res-form .requied {
    font-size: .8em;
    color: #fff;
    display: inline-block;
    padding: .2vh .3vw;
    background: var(--color-theme);
    position: relative;
    top: -1px;
    margin-left: .2vw;
}

.wpcf7 input,
.wpcf7 textarea {
    border: 1px solid #033059 !important;
}

.wpcf7 .wpcf7-submit {
    width: 50% !important;
}

span.wpcf7-form-control.wpcf7-checkbox {
    display: -ms-grid;
    display: grid;
    text-align: left;
    font-size: 1.2rem;
}

span.wpcf7-list-item-label {
    line-height: 1.8;
}

span.wpcf7-list-item.last.has-free-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

span.wpcf7-list-item.last.has-free-text label {
    width: 12%;
}

span.wpcf7-list-item.last.has-free-text input.wpcf7-free-text {
    width: 30%;
    padding: 0 0.5em;
    height: 25px;
    margin-top: 4px;
}

.table-res-form input[type="text"],
input[type="email"],
textarea,
.wpcf7 input[type="tel"],
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required,
select.wpcf7-form-control.wpcf7-select,
.wpcf7-text {
    padding: 0.2em 0.5em;
    height: 2.5vw;
    font-size: 1.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    width: 100%;
}

.table-res-form input[type="text"]:focus,
textarea:focus {
    background: #FFF;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

.wpcf7 input[type="checkbox"] {
    left: -.2vw;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 1.1vw;
    height: 1.1vw;
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    top: -.2vh;
    position: relative;
}

.wpcf7 input[type="checkbox"]:checked {
    background-color: var(--color-theme);
    border-color: var(--color-theme);
    position: relative;
}

.wpcf7 input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 1vw;
    height: .5vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
    position: absolute;
    left: 1px;
    top: 1px;
    z-index: 1;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 16em;
    padding: 0.5em;
}


.table-res-form input[type=submit] {
    position: relative;
    padding: .5vh 0;
    color: #fff;
    background: var(--color-theme);
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: .2em;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 1.5px solid #fff !important;
    border-radius: 0;
}

.table-res-form input[type=submit]:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1.5px solid #033059 !important;
    background: #ffffff;
    color: var(--color-theme);
}

span.wpcf7-spinner {
    display: none;
}

tr.td_last {
    text-align: center;
}

tr.td_last td {
    padding: 1.5em 0;
}

.home tr.td_last td {
    padding: 0;
}

span.wpcf7-not-valid-tip {
    color: #E91E63;
    text-align: center;
    display: block;
    font-size: 1rem;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2vh auto 2vh !important;
    padding: .5em !important;
}

form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #e91e63 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #E91E63 !important;
}

.wpcf7-response-output {
    text-align: center;
    color: #e91e63;
    margin-top: 2em;
    padding: 0.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border: .5px solid #333 !important;
}

.recaptcha {
    text-align: center;
    margin-bottom: 1em;
}

.recaptcha a {
    text-decoration: none;
    color: var(--color-main);
}

.grecaptcha-badge {
    visibility: hidden;
}

.screen-reader-response {
    display: none;
}

p.pp {
    text-align: center;
}

p.pp a {
    color: var(--color-main);
    text-decoration: none;
    font-size: 1.2rem;
}

p.pp a:hover {
    opacity: 0.6;
}

.contact_text_bottom {
    text-align: center;
    margin-top: 3vh;
    font-size: 1rem;
}

/*---------------------------------------------------------
固定ページ
---------------------------------------------------------*/
.fixed-page {
    margin-top: 12vh;
}

.fixed-page .inner {
    width: 55%;
    margin: 0 auto;
    padding: 7vh 0 10vh;
}

.fixed-page h1 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .02vw;
    line-height: 1.8;
}

.fixed-page a {
    text-decoration: underline;
    color: var(--color-theme);
}

.breadcrumb a {
    text-decoration: none;
}

/*---------------------------------------------------------
404 ページ
---------------------------------------------------------*/
.error404 main {
    text-align: center;
    padding: 7vh 0 15vh;
}

.error404 main h2 {
    font-size: 2rem;
    margin-bottom: 3vh;
    color: var(--color-theme);
}

.error404 main p {
    font-size: 1.3rem;
}

.error404 main div {
    margin-top: 5vh;
}

.error404 main div a {
    width: 20%;
    padding: .7vh 0;
    display: block;
    text-align: center;
    margin: 0 auto;
    background: #033059;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: .05vw;
    font-weight: 500;
    position: relative;
}

/*---------------------------------------------------------
  スマホ
  ---------------------------------------------------------*/

@media screen and (max-width:743px) {

    body {
        line-height: 1.7;
    }

    .topBtn {
        display: none !important;
    }

    br.sp_block {
        display: block !important;
    }

    .sp_block {
        display: block !important;
    }

    .sp_inlineblock {
        display: inline-block !important;
    }

    span.pc_inlineblock {
        display: none !important;
    }

    .pc_block {
        display: none !important;
    }

    .pc_inlineblock {
        display: none;
    }

    header {
        position: relative;
    }



    .site-title-wrap {
        width: 100%;
    }

    .site-title-wrap img {
        width: 68%;
        margin: 0 auto;
    }


    /* margin-top */


    /* text-align */


    /* width */

    /* font-size */


    /*--------------------------------
スマホフッター固定バー
---------------------------------*/


    _::-webkit-full-page-media,
    _:future,
    :root ul.floating li {
        padding: 2svh 0 3svh;
    }

    _::-webkit-full-page-media,
    _:future,
    :root footer#footer .footer-inner {
        padding: 5svh 0 13svh;
    }


    ul.floating {
        background: rgb(3 48 89 / 90%);
        margin: 0 auto;
        overflow: hidden;
        display: table;
        table-layout: fixed;
        text-align: center;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 3;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-top: .5px solid #ffe3af;
    }

    ul.floating li {
        padding: 2svh 0 2svh;
        display: table-cell;
        border-right: .5px solid #ffe3af;
    }

    ul.floating li a {
        border: none;
        display: block;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        line-height: 1;
        color: #ffe3af;
    }

    ul.floating li.one a,
    ul.floating li.three {
        letter-spacing: .5vw;
    }

    li.two {
        width: 50%;
    }

    li.two a {
        font-size: 4vw;
        font-weight: 500;
    }

    ul.floating li.three {
        border-right: unset;
    }


    /*--------------------------------
ハンバーガーメニュー
---------------------------------*/
    .g-nav-openbtn {
        display: block;
        position: absolute;
        z-index: 999999;
        top: 3vw;
        right: 3%;
        cursor: pointer;
        width: 50px;
        height: 11svh;
    }


    .g-nav-openbtn .openbtn-area {
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
    }

    .g-nav-openbtn span {
        display: inline-block;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 2px;
        width: 45%;
    }

    .nav-menu .menu-list,
    nav.globalMenuSp ul {
        display: block;
    }

    nav#g-nav {
        background: #033059;
    }

    .hamburger {
        display: block;
        height: auto;
        cursor: pointer;
        text-align: center;
        color: #ffe3af;
    }

    nav.globalMenuSp {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        color: #fff;
        background: #3ad6ff;
        text-align: center;
        width: 100%;
        -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
                transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        -o-transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        min-height: 100%;
    }

    nav#g-nav {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 10000;
    }

    .g-nav_logo {
        width: 68%;
        margin: 0 auto 3svh;
    }

    nav.globalMenuSp ul#g-navi {
        margin: 0 auto;
        padding: 0;
        width: 80%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: unset;
    }

    nav.globalMenuSp ul li {
        padding: 1svh 0;
        width: 100%;
    }

    nav ul li a {
        font-weight: 400;
        font-family: unset;
        border-right: unset;
    }

    .menu-list {
        width: 100%;
        top: 0;
        border: unset;
        position: relative;
    }

    .menu-list>li.one a {
        border-bottom: unset;
    }

    nav ul li.contact {
        outline: unset;
        outline-offset: unset;
        background: unset;
    }

    header nav ul li,
    nav.globalMenuSp ul li a,
    li.nav-menu {
        display: block;
        font-size: 4.5vw;
    }

    nav.globalMenuSp ul li:hover {
        background: rgb(255 255 255 / 50%);
    }

    nav.globalMenuSp ul li a,
    li.nav-menu {
        display: block;
        color: #fff;
        padding: 0;
        text-decoration: none;
        letter-spacing: 2px;
        font-weight: 500;
        text-align: center;
    }

    nav.globalMenuSp.active {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }

    nav.globalMenuSp ul li:hover {
        background: unset;
    }

    .is-fixed {
        display: none !important;
    }

    nav#g-nav .hamburger {
        color: #171c61;
        font-size: 3.6vw;
        background: #ffffff;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 3svh auto 0;
        padding: .5svh 1.5em;
        border-radius: 50px;
    }

    nav.globalMenuSp ul li.contact a {
        padding: 1.2svh 0;
        background: var(--gradient-primary);
        height: unset;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-top: 1svh;
        color: var(--color-main);
        outline: .7px solid #333;
        outline-offset: -1vw;
    }

    nav ul li.contact a hr {
        border-top: 1px solid #333;
        margin: .5svh auto 0;
        width: 60%;
    }
}




@media screen and (min-width: 767px) {

    ul.floating {
        display: none !important;
    }
}



/*---------------------------------------------------------
  i pad all portrait
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 743px) and (max-device-width: 1024px) and (orientation: portrait) {
	

    /* height */


    /* top */



    /* padding */



    /* margin */


    /* font-size */

}


/*---------------------------------------------------------
  i pad pro landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 744px) and (max-device-width: 1400px) and (orientation: landscape) {
	

    /* font-size */

}

/*---------------------------------------------------------
  i pad portrait
  ---------------------------------------------------------*/
@media screen and (min-width: 767px) and (max-width: 768px) {}

/*---------------------------------------------------------
  i pad landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {}

/*---------------------------------------------------------
 小型PC～中型PC
---------------------------------------------------------*/
@media screen and (min-width:1200px) and (max-width:1700px) {


    /* font-size */

}


/*---------------------------------------------------------
 大型PC
---------------------------------------------------------*/

@media screen and (min-width:1920px) {
	/* font-size */
 
}