@charset "utf-8";
/**********************************************************************
AUTHOR          -
CSS構成書:
Last Modified: 2018.10.12
***********************************************************************/
/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Page Formats
 *   5.2 - Page "homepage(Japanese Top-Page)"
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */
/**
 * 1.0 Reset
 *
 * html5doctor.com Reset Stylesheet
 * v1.6.1
 * Last Updated: 2010-09-17
 * Author: Richard Clark - http://richclarkdesign.com 
 * Twitter: @rich_clark
 * https://code.google.com/p/html5resetcss/downloads/list
 * ----------------------------------------------------------------------------
 */
/* HTML5 Doctor CSS Reset */
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; */
  background-color: transparent;
}
body {
  line-height: 1.5;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .1em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav 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;
  transition: 400ms;
}
a:hover, a:hover img {
  opacity: .8;
}
/* 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 #f7a59a;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
/* Set Up */
html {
  overflow-y: scroll; /* firefox　スクロールバー対策 */
  font-size: 62.5%;
}
/* ページ基本設定 */
body {
  color: #333;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size-adjust: none;
  -webkit-text-size-adjust: none;
}
/* リンク設定 */
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  ext-decoration: none;
}
a:hover, a:active {
  color: #333;
  ext-decoration: none;
}
/**
 * 2.0 Repeatable Patterns (code snippet)
 * ----------------------------------------------------------------------------
 */
/* font-size */
/* ブラウザ間font-size%統一 */
.text10 {
  font-size: 77%;
}
.text11 {
  font-size: 85%;
}
.text12 {
  font-size: 93%;
}
.text13 {
  font-size: 100%;
}
.text14 {
  font-size: 108%;
}
.text15 {
  font-size: 116%;
}
.text16 {
  font-size: 123.1%;
}
.text17 {
  font-size: 131%;
}
.text18 {
  font-size: 138.5%;
}
.text19 {
  font-size: 146.5%;
}
.text20 {
  font-size: 153.9%;
}
.text21 {
  font-size: 161.6%;
}
.text22 {
  font-size: 167%;
}
.text23 {
  font-size: 174%;
}
.text24 {
  font-size: 182%;
}
.text25 {
  font-size: 189%;
}
.text26 {
  font-size: 197%;
}
/* text */
.textcenter {
  text-align: center;
}
.textleft {
  text-align: left;
}
.textright {
  text-align: right;
}
.fontbold {
  font-weight: bold;
}
.fontnormal {
  font-weight: normal;
}
.fontSpacingM1px {
  letter-spacing: -1px;
}
.fontSpacingM2px {
  letter-spacing: -2px !important;
}
.fontSpacing0px {
  letter-spacing: 0px !important;
}
.fontSpacingP1px {
  letter-spacing: 1px !important;
}
.fontSpacingP01em {
  letter-spacing: 0.1em !important;
}
.lh01 {
  line-height: 1em;
}
.lh14 {
  line-height: 1.4em;
}
.lh16 {
  line-height: 1.6em;
}
.lh24 {
  line-height: 2.4em;
}
.colorred {
  color: #E10000;
}
.colorblack {
  color: #333333;
}
.colorgreen {
  color: #159249;
}
/* float & box */
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
.clearboth {
  clear: both;
}
.floatleftimg {
  float: left;
  margin: 0 1.6em 0 0;
  display: inline;
}
.floatrightimg {
  float: right;
  margin: 0 0 0 1.6em;
  display: inline;
}
.displayblock {
  display: block;
}
.displaynone {
  display: none;
}
.displayinline {
  display: inline;
}
.displayinlineblock {
  display: inline-block;
}
.boxcenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.box90 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.box95 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.box98 {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
.wd_30 {
  width: 30%;
}
.wd_40 {
  width: 40%;
}
.wd_48 {
  width: 48%;
}
.wd_50 {
  width: 50%;
}
.wd_60 {
  width: 60%;
}
.wd_66 {
  width: 66%;
}
.wd_70 {
  width: 70%;
}
.wd_80 {
  width: 80%;
}
.wd_90 {
  width: 90%;
}
.wd_100 {
  width: 100%;
}
.hg_4em {
  height: 4em;
}
.hg_5em {
  height: 5em;
}
.hg_6em {
  height: 6em;
}
.hg_7em {
  height: 7em;
}
.hg_8em {
  height: 8em;
}
.hg_9em {
  height: 9em;
}
/* Padding and Margin Settings */
.marginauto {
  margin-left: auto;
  margin-right: auto;
}
/* margin-top */
.mt05 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt60 {
  margin-top: 60px;
}
/* margin-left */
.ml00 {
  margin-left: 0px;
}
.ml05 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml35 {
  margin-left: 35px;
}
.ml40 {
  margin-left: 40px;
}
.ml60 {
  margin-left: 60px;
}
/* margin-right */
.mr00 {
  margin-right: 0px;
}
.mr05 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr60 {
  margin-right: 60px;
}
/* margin-bottom */
.mb00 {
  margin-bottom: 0px;
}
.mb05 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb60 {
  margin-bottom: 60px;
}
/* padding-top */
.pt00 {
  padding-top: 0px;
}
.pt05 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt60 {
  padding-top: 60px;
}
/* paddign-left */
.pl00 {
  padding-left: 0px;
}
.pl05 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pl35 {
  padding-left: 35px;
}
.pl40 {
  padding-left: 40px;
}
.pl50 {
  padding-left: 50px;
}
.pl60 {
  padding-left: 60px;
}
/* padding-right */
.pr00 {
  padding-right: 0px;
}
.pr05 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pr35 {
  padding-right: 35px;
}
.pr40 {
  padding-right: 40px;
}
.pr60 {
  padding-right: 60px;
}
/* padding-bottom */
.pb00 {
  padding-bottom: 0px;
}
.pb05 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb60 {
  padding-bottom: 60px;
}
/* リンク設定:コンテンツ内 */
.section a:link {
  color: #3B5998;
  text-decoration: underline;
}
.section a:visited {
  color: #3B5998;
  text-decoration: underline;
}
.section a:hover {
  color: #3B5998;
  text-decoration: underline;
}
.section a:active {
  color: #3B5998;
  text-decoration: underline;
}
#pankuzu-list li a:link {
  color: #333333;
  text-decoration: none;
}
#pankuzu-list li a:visited {
  color: #a0a0a0;
  text-decoration: none;
}
#pankuzu-list li a:hover {
  color: #3B5998;
  text-decoration: underline;
}
#pankuzu-list li a:active {
  color: #3B5998;
  text-decoration: underline;
}
.ft-navi dd a:link {
  color: #353535;
  text-decoration: none;
}
.ft-navi dd a:visited {
  color: #353535;
  text-decoration: none;
}
.ft-navi dd a:hover {
  color: #3B5998;
  text-decoration: underline;
}
.ft-navi dd a:active {
  color: #3B5998;
  text-decoration: underline;
}
/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */
.wrapper {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
#contents {
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#contents .content {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */
/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */
#header {
  width: 100%;
  height: 150px;
  position: fixed;
  top: 0;
  z-index: 200;
  background: #fff
}
#header div {
  width: 1100px;
  margin: 0 auto;
}
#header div::after {
  content: "";
  display: block;
  clear: both;
}
#header div #header-logo {
  width: 201px;
  height: auto;
  float: left;
  margin: 31px 0 0 0;
}
#header div #header-logo a {
  display: block;
  width: 100%;
  height: auto;
}
#header div #header-logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
#header div #header-logo img:hover {
  opacity: 0.6;
}
/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */
#global-navi {
  width: 100%;
}
#global-navi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 35px 0;
}
#global-navi li {
  text-align: center;
	position: relative;
}
#global-navi a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
  letter-spacing: .1em;
}
	#global-navi ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: #f99;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

#global-navi ul li a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}
#l-navi {
  text-align: right;
	display: block;
  margin: 40px 0 0 40px;
}
#l-navi ul {
  text-align: right;
	letter-spacing: -.40em;
	float: right;
	display: flex;
	align-items: center;
	margin-top: 22px;
}
#l-navi li {
  list-style: none;
  letter-spacing: 0.05em;
  margin-left: 2px;
	padding: 0 0 0 14px;
}
#l-navi li:first-child {
  margin-left: 0;
}

#l-navi a {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
#l-navi a:hover, #l-navi a:active {
  opacity: 0.6;
}
#l-navi a img {
  display: block;
}

#l-navi li.merumaga a {
  color: #fff;
  background: #6cbfe0;
  text-align: center;
  text-decoration: none;
  width: 170px;
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}
#l-navi li.contact a {
  color: #fff;
  background: #ff9999;
  text-align: center;
  text-decoration: none;
  width: 170px;
  padding: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}



/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */
/**
 * 5.1 Page Formats
 * ----------------------------------------------------------------------------
 */
/*--------------------------
parts
--------------------------*/
/* more-info (Ghost Buttons) */
.more-info {
  display: block;
  width: 300px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
}
.more-info span {
  display: block;
  width: 100%;
  padding: 0.7em 0;
  text-align: center;
  color: #69bf37;
  border: 1px solid #69bf37;
  -webkit-transition: color .3s ease-out, border .3s ease-out, background-color .3s ease-out;
  transition: border .3s ease-out, border .3s ease-out, background-color .3s ease-out;
}
a:hover .more-info span {
  color: #32720f;
  border: 1px solid #32720f;
}
.more-info a {
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
}
.more-info a:hover > span {
  color: #32720f;
  border: 1px solid #32720f;
}
/* smart */
.hide-smart {
  display: none;
}
/*--------------------------
layout
--------------------------*/
/* 横2列 */
.two-column {
  letter-spacing: -.40em;
}
.two-column > * {
  display: inline-block;
  width: 49.4%;
  letter-spacing: normal;
  margin-right: 1.2%;
  margin-bottom: 70px;
  vertical-align: top;
}
.two-column > *:nth-child(2n) {
  margin-right: 0;
}
/* 横3列 */
.three-column {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -.40em;
}
.three-column > * {
  display: inline-block;
  width: 300px;
  letter-spacing: normal;
  margin-right: 40px;
  margin-bottom: 30px;
  vertical-align: top;
}
.three-column > *:nth-child(3n) {
  margin-right: 0;
}
/* 見出し（テクスチャ帯） */
.heading-texture-line {
  margin-bottom: 30px;
  padding: 0.4em 0 7px 0;
  font-size: 30px;
  font-size: 3.0rem;
  color: #00693E;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border-bottom: 5px solid #52AE40;
}
/* 見出し（テクスチャ帯） */
.heading-small-line {
  margin-bottom: 20px;
  padding: 0.4em 0 7px 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #e3599d;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border-bottom: 3px solid #f1acce;
}
/* 見出し（オレンジ色囲み） */
.heading-frame {
  background-color: #fff;
  margin-bottom: 17px;
  padding: 0.3em;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ED7700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ED7700;
}
/* 見出し（灰色囲み） */
.heading-frame-small {
  background-color: #fff;
  margin-bottom: 30px;
  padding: 0.3em;
  font-size: 22px;
  font-size: 2.2rem;
  color: #000000;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  border: 5px solid #E6E6E6;
}
/* 段落 */
/* #contents p { margin-bottom: 1.2em; font-size: 16px; font-size: 1.6rem; line-height: 1.8; } */
/* list */
ol.list-set {
  font-size: 14px;
  font-size: 1.4rem;
}
ol.list-set > li {
  margin: 6px 0;
  list-style: outside decimal none;
  line-height: 1.4;
}
ol.list-set > li:first-child {
  margin-top: 0;
}
/* list */
ul.list-set {
  font-size: 14px;
  font-size: 1.4rem;
}
ul.list-set > li {
  position: relative;
  margin: 6px 0;
  list-style: outside none none;
  line-height: 1.4;
}
ul.list-set > li:first-child {
  margin-top: 0;
}
ul.list-set > li:before {
  content: '・';
  color: #52AE40;
  font-size: 32px;
  line-height: 10px;
  position: absolute;
  left: -28px;
  top: 5px;
}
/* list(text-mark) */
ul.list-set.tl > li {
  position: relative;
  margin: 4px 0;
  list-style: outside none none;
  line-height: 1.4;
  text-indent: -1em;
  margin-left: 1em;
}
ul.list-set.tl > li:before {
  display: none;
}
/* 画像のキャプション */
figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
figure figcaption {
  padding: 10px 0 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}
/* 2カラムボックス */
.flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
/**
 * 5.2 Page "homepage(Japanese Top-Page)"
 * ----------------------------------------------------------------------------
 */
#wpadminbar {
  display: none;
}
/*-----------------------
main-image
-----------------------*/
#main-image {
  width: 100%;
  margin-top: 105px;
  /* position: relative; */
}
/*
#main-image div { display: block; width: 100%; height: auto; }
#main-image div img { display: block; width: 100%; height: auto; }
*/
#n2-ss-2-align {
  margin-top: 110px;
}
#n2-ss-2-arrow-next {
  background: url(../images/next-arrow.png) no-repeat center center;
  background-size: cover;
  width: 40px;
  height: 76px;
}
#n2-ss-2-arrow-next img {
  display: none !important;
}
#n2-ss-2-arrow-previous {
  background: url(../images/prev-arrow.png) no-repeat center center;
  background-size: cover;
  width: 40px;
  height: 76px;
}
#n2-ss-2-arrow-previous img {
  display: none !important;
}
/*-----------------------
index-pickup
-----------------------*/
.index-pickup {
  width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.index-pickup img {
  width: 50%;
  height: auto;
}
.index-pickup-box {
  width: 35%;
  margin: 0 70px;
}
.index-pickup-sub-title {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .1em;
  padding-top: 20px;
}
.index-pickup-sub-title span {
  font-size: 13px;
  font-size: 1.3rem;
}
.index-pickup h2 {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 26px;
  font-size: 2.6rem;
  padding: 20px 0 30px;
  font-weight: 300;
}
.common-btn {
  width: 220px;
  height: 40px;
  border: 2px solid #f9c2b8;
  font-size: 14px;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 30px auto 0;
  position: relative;
}
.common-btn::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 6px;
  border-right: 1px solid #f9c2b8;
  border-bottom: 1px solid #f9c2b8;
  transform: skewX(45deg);
  transition: .4s;
  position: absolute;
  top: 14px;
  left: 185px;
}
.common-btn:hover::after {
  width: 80px;
  transition: .4s;
}
.button a {
  position: relative;
  display: inline-block;
  padding: 10px;
  color: #000;
  text-align: center;
  text-decoration: none;
}
.reverse{
		flex-direction: row-reverse;
	}
#sec02 {
  position: relative;
  margin-top: 80px;
}
.sec02-inner {
  position: relative;
  height: 800px;
}
.sec02-inner:before {
  content: "";
  display: block;
  padding-top: 100%; /* 1:1 */
}
#bg-sec02 {
  background: #fdedec;
  width: 80%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#sec02-img img {
  width: 80%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
#sec02-txt {
  width: 380px;
  height: 260px;
  background: #fff;
  padding:60px;
  position: absolute;
  right: 10vw;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
}
#sec02-txt .common-btn-p{
	margin-top:24px;
}
.sub-title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 10px;
}
/* .box のCSSは同上 */
.bd {
  position: relative;
  width: 900px;
  margin: 80px auto;
  padding: 130px 100px;
  height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
}
div.bd div.bdT, div.bd div.bdB, div.bd div.bdL, div.bd div.bdR {
  background: #f9c2b8;
  position: absolute;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.bd div.bdT {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}
.bd div.bdB {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
}
.bd div.bdR {
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
}
.bd div.bdL {
  height: 100%;
  width: 1px;
  left: 0;
  bottom: 0;
}
/* .pathのCSSは同上 */
/* .box, .bd, div.bd divのCSSは同上 */
.active.scrollin .bd div.bdT {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}
.active.scrollin .bd div.bdB {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
}
.active.scrollin .bd div.bdR {
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
}
.active .bd div.bdL {
  height: 100%;
  width: 1px;
  left: 0;
  bottom: 0;
}
.bd div.bdT {
  width: 0;
}
.bd div.bdB {
  width: 0;
}
.bd div.bdR {
  height: 0;
}
.bd div.bdL {
  height: 0;
}
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 0.5s;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
#sec02 h2, #sec03 h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  padding-bottom: 20px;
}
#sec03 {
  position: relative;
}
#sec03-txt {
  width: 380px;
}
#sec03-txt p {
  padding-bottom: 20px;
	text-align: left;
}
.common-btn-p a {
  background: #f9c2b8;
  color: #fff;
  width: 260px;
  height: 40px;
  font-size: 13px;
  font-size: 1.3rem;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 10px auto 0;
  position: relative;
}
#sec03 img {
  position: absolute;
  right: -150px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 614px;
  height: auto;
}
#sec04 .sub-title {
  text-align: center;
  padding-bottom: 20px;
}
#sec04 h2 {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  padding-bottom: 40px;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
}
#sec04 ul {
  width: 1100px;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#sec04 ul li {
  list-style: none;
  letter-spacing: .1em;
  width: 24%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
  position: relative;
  overflow: hidden;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#sec04 ul li a {
  color: #fff;
  z-index: 1;
  position: relative;
}
#sec04 ul li a span {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"
}
#sec04 ul li::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(bg.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
#sec04 ul li:hover:after {
  opacity: .8;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
#sec04 ul.adults li:nth-child(1)::after {
  background: url(../images/service1@2x.jpg) no-repeat center center;
  background-size: cover;
}
#sec04 ul.adults li:nth-child(2)::after {
  background: url(../images/service2@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.adults li:nth-child(3)::after {
  background: url(../images/service3@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.adults li:nth-child(4)::after {
  background: url(../images/service4@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.students li:nth-child(1)::after {
  background: url(../images/service5@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.students li:nth-child(2)::after {
  background: url(../images/service6@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.students li:nth-child(3)::after {
  background: url(../images/service7@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
#sec04 ul.students li:nth-child(4)::after {
  background: url(../images/service8@2x.jpg) no-repeat center center;
  background-size: cover;
  ;
}
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 300ms;
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
/*-----------------------
SERVICE
-----------------------*/
#index-info {
  padding: 80px 20px;
  background: #fff9f7;
}
#index-info .sub-title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  text-align: center;
}
#index-info h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  padding-bottom: 40px;
  text-align: center;
}
#index-info ul {
  width: 1100px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-info ul li {
  list-style: none;
  letter-spacing: .1em;
  width: 23%;
	margin-bottom:20px;
  display: flex;
  justify-content: center;
  align-items: top;
  position: relative;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box
}

#index-info ul::after,
#index-info ul::before {
        content: "";
        display: block;
        width: 23%;
        height: 0;
    }
 
#index-info ul::before {
        order: 1;
    }

#index-info ul li a {
  z-index: 1;
  position: relative;
}
#index-info ul li .thum {
  overflow: hidden;
  max-width: 250px;
  display: block;
}
#index-info ul li img {
  display: block;
  padding-bottom: 15px;
  width: 100%;
  height: 176px;
  object-fit: cover;
}
.blog-info {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.date {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: left;
}
#index-column .date {
  color: #f4988c;
}
#index-method .date {
  color: #9fd1af;
}
.single .cate {
  color: #f95555;
  padding: 2px 5px;
  font-size: 13px;
  font-size: 1.3rem;
}
.home .cate {
  display: block;
  color: #fff;
  text-align: center;
  padding: 2px 5px;
  font-size: 13px;
  font-size: 1.3rem;
}
#index-column .cate {
  background: #f4988c;
}
#index-method .cate {
  background: #9fd1af;
}
#index-contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
#index-contact .sub-title {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  text-align: center;
}
#index-contact h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  padding-bottom: 30px;
  text-align: center;
}
#index-contact .common-btn-p a{
	width: 300px;
    height: 50px;
	font-size:1.8rem
}
#index-contact dt {
  letter-spacing: .1em;
  padding-bottom: 10px;
}
#index-contact dd input, #index-contact dd textarea {
  width: 100%;
  border-radius: 2px;
  padding: 15px 10px;
  margin-bottom: 40px;
  background: #efefef;
  border: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
#index-contact dt span {
  background: #f4988c;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 1px 3px;
  display: inline-block;
  margin-left: 1em;
}
input[type="submit"] {
  border: none;
  background: #f9c2b8;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  width: 270px;
  margin: 30px auto;
  display: block;
  letter-spacing: .1em;
  font-weight: 300;
  transition: 400ms;
}
input[type="submit"]:hover {
  background-color: #fdd;
}
.mw_wp_form_preview dd{
	 padding: 5px 0 10px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}
.mw_wp_form_complete{
	text-align:center;
}
#fotter-sns ul {
  width: 500px;
  margin: 40px auto 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#fotter-sns ul li {
  width: 15%;
  list-style: none;
  text-align: center;
}
/* archiveページ用 */
.articlelist {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items:top
}
.articlelist li{
	list-style:none;
	width:48%
}
.articlelist li img{
	width:100%;
   height: 240px;
   object-fit: cover; 
	margin-bottom:10px
}
#main-content #entry-content .articlelist h2{
    border: none
}
.archive-entry .articlelist a {
  padding: 10px 0 10px 0;
  color: #f7a59a;
  border-top: 1px solid #f7a59a;
}

.archive-entry .articlelist header h2 {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: normal;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}
.archive-entry .articlelist header h2 span {
  font-weight: bold;
  padding-left: 0.5em;
  color: #d01818;
}
#main-content #entry-content .archive-entry .articlelist header p {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
#entry-content  .size-full{
	max-width:100%;
	height:auto
}
.articlelist header .articlelist-time {
  padding: 0 7px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.archive-entry .no-articlelist {
  width: auto;
  color: #f7a59a;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
}

.articlelist dl{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap
}
.articlelist dl dd{
	width:48%
}
/* searchページ用 */
.search article{
	border-bottom:1px solid #ccc;
	display: flow-root;
	padding-bottom:15px;
}
.search #main-content #entry-content h2 {
	font-size: 18px;
  font-size: 1.8rem;
	font-weight: 600;
	padding:10px 0;
	margin-bottom:0;
	border-top:none;
	border-bottom:none;
}
#main-content #entry-content.archive-entry   h2 {
	border-top:none;
	padding-top:10px;
	font-size:16px;
	font-size:1.6rem;
	font-weight:400;
	color:#333
}
.entry-meta,
.entry-meta a{
	font-size:11px;
	font-size:1.1rem;
	padding-bottom:10px;
	color:#f9c2b8;
}
img.attachment-post-thumbnail{
	max-width:20%;
	height:auto;
	float:left;
	margin-right:10px
}
.search  .entry-summary{
	float: right;
   width: 76%;
}
.nav-previous{
	padding-top:10px;
}
.nav-previous a{
	color:#f95555;
}
.nav-previous a:hover{
	text-decoration:underline;
}

/*-----------------------
index-sns
-----------------------*/
#index-sns {
  background-color: #c9c3cf;
  padding: 90px 0 80px 0;
}
#index-sns > div {
  width: 1030px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
#index-sns > div > div {
  width: 460px;
}
#index-sns > div > div h4 {
  margin-bottom: 42px;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: normal;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}
#index-sns > div > div div {
  height: 615px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
} /* ダミー要素 */
#index-sns #index-sns-facebook h4 {
  letter-spacing: 0.2em;
}
#index-sns #index-sns-instagram h4 {
  letter-spacing: 0.12em;
}
/**
 * 5.3 Page "sub-page(page, category, single-page.)"
 * ----------------------------------------------------------------------------
 */
main#contents {
  margin-top: 130px;
}
body.index main#contents {
  margin-top: 0;
}
#category-title {
  height: 140px;
  position: relative;
  text-transform: uppercase;
}
#category-title > h1 {
	background:#fff9f7;
  margin: 0;
  padding: 40px 10px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  line-height: 1.1;
  font-weight: normal;
  text-align: center;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}
#category-title > h1 p {
  margin: 0;
  font-size: 30px;
  font-size: 3.0rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.category-list ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px
}
.category-list li{
        list-style: none;
}
.category-list li a{
    display: block;
    border: 1px solid #ff9999;
    color:#ff9999;
    text-align: center;
    padding: 4px 10px;
    margin: 0 10px 10px 0;
    font-size: 13px;
    border-radius: 15px
}
#eye-catch {
  overflow: hidden;
  vertical-align: middle;
}
.home #eye-catch img {
  display: block;
  width: 1060px;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
  object-fit: cover;
}
.single #eye-catch img ,
.page #eye-catch img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  overflow: hidden;
  object-fit: cover;
}
.page-content-wrapper {
  padding: 40px 0 100px 0;
}
.page-content {
  width: 1100px;
  margin: 0 auto;
}
.page-content::after {
  content: "";
  display: block;
  clear: both;
}
#main-content {
  width: 740px;
	float: left;
}
#main-header {
  padding:  0;
}
#main-header #main-header-catch {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #545454;
  margin: 0;
  padding-bottom: 8px;
}
#main-header-heading {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
	font-weight: 400;
  text-indent: 0.1em;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    margin-bottom: 20px
}
#main-header #main-header-comment {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: #736087;
  margin: 0;
}
/* 以下、投稿範囲（WordPressの本文投稿部分）の要素コーディング（できるだけclass名は付けない） */
h1#main-header-heading{
  padding: 0 0 30px;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#main-content #entry-content h2 {
	font-size: 28px;
  font-size: 2.8rem;
	font-weight: 600;
	padding: 20px 0;
	margin-bottom: 30px;
    border-bottom:2px solid #333;
}
#main-content #entry-content h3 {
  font-size:20px;
	font-size: 2rem;
	font-weight:700;
	position: relative;
	margin-bottom: 30px;
	margin-top: 30px;
    padding-bottom: 10px;
     border-bottom: 1px solid #ccc;
}

#main-content #entry-content h4 {
  font-size: 21px;
    font-size: 2.1rem;
    font-weight: 400;
    padding: 20px 0 10px;
    margin-bottom: 30px;
    border-bottom: 2px dotted #f7a59a;
    color: #ff9999;
}
#main-content #entry-content h5 {
font-size:20px;
font-size: 2rem;
font-weight:700;
padding:15px 20px;
	margin-bottom: 30px;
background:#fdedec;
}
#main-content #entry-content h6 {
  font-size: 20px;
  font-size: 2rem;
  font-weight:700;
padding-left: 5%;
	margin-bottom: 30px;
position: relative;
}
#main-content #entry-content h6:before {
    position: absolute;
    display: block;
    content: "";
    height: 3px;
    width: 15px;
    left: 0;
    top: 15px;
	background: #f7a59a;
}
#main-content #entry-content p {
  font-size: 16px;
  font-size: 1.6rem;
  text-indent: 0.2em;
  line-height: 1.8;
  margin: 0 0 1em 0;
}
#main-content #entry-content table {
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 35px;
	border: 1px solid #f7a59a;
}
#main-content #entry-content table tr {
  border-bottom: 1px solid #f7a59a;
}
#main-content #entry-content table tr:last-child {
  border-bottom: none;
}
#main-content #entry-content table th {
  background-color: #fff9f7;
  padding: 15px 30px;
  text-align: center;
}
#main-content #entry-content table td {
  padding: 15px 20px;
}
#main-content #entry-content img.aligncenter {
  display: block;
  margin: 0 auto 35px auto;
}
#main-content #entry-content ul.ul-large {
  margin: 0 0 38px 30px;
  font-size: 15px;
  font-size: 1.5rem;
}
#main-content #entry-content ul.ul-large > li {
  position: relative;
  margin-bottom: 7px;
  list-style: outside none none;
  line-height: 1.4;
}
#main-content #entry-content ul.ul-large > li:before {
  background: url(../images/sub/list_icon.png) no-repeat center center;
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  left: -25px;
  top: 0px;
}
#main-content #entry-content ul.ul-medium {
  margin-left: 17px;
  font-size: 15px;
  font-size: 1.5rem;
	margin: 0 0 38px 30px;
}
#main-content #entry-content ul.ul-medium > li {
  position: relative;
  margin-bottom: 7px;
  list-style: none;
  line-height: 1.4;
}
#main-content #entry-content ul.ul-medium > li:before {
	background: url(../images/sub/list_icon2.png) no-repeat center left;
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  left: -25px;
  top: 0px;
}
#main-content #entry-content .ec-border-box {
  width: 100%;
  border: 1px solid #f7a59a;
  margin: 30px auto;
  padding: 30px  ;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#main-content #entry-content .ec-border-box p{
	margin:0
}
#main-content #entry-content .ec-three-column-box {
  width: 610px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
#main-content #entry-content .ec-three-column-box > div {
  width: 186px;
}
#main-content #entry-content .ec-three-column-box > div img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
#main-content #entry-content .ec-three-column-box > div a p {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  color: #f7a59a;
  text-decoration: underline;
  letter-spacing: 0em;
  text-indent: 0;
  line-height: 1.6;
}
#main-content #entry-content .ec-link-button {
  max-width: 100%;
  margin: 20px auto;
}
#main-content #entry-content .ec-link-button a {
  display: block;
  background-color: #ff9999;
  width: 100%;
  padding: 20px 15px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
	position: relative
}
#main-content #entry-content .ec-link-button a:before{
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #fff;
}
#main-content #entry-content .ec-link-button a:after{
  display: block;
  content: "";
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #f99;
}

#main-content #entry-content .ec-link-button a:hover {
  opacity: 0.5;
}
#main-content #entry-content .ec-border-box .ec-link-button{
	margin-bottom:0
}
/* sidenavi */
#side-menu {
  width: 310px;
  float: right;
  font-feature-settings: "palt";
}
#side-menu .heading-side-menu {
  background: #fdedec;
	padding: 10px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: inherit;
	margin-top: 0!important
		
}
#side-menu ul.side-txtlink {
  margin: 0 0 40px;
  font-size: 14px;
  font-size: 1.4rem;
}
#side-menu ul.side-txtlink > li {
  position: relative;
	padding:0 0 10px 30px;
  margin-bottom: 10px;
  list-style: outside none none;
  line-height: 1.8;
	border-bottom: 1px solid #f9dddc;
}
#side-menu ul.side-txtlink > li a {
  text-decoration: none;
  color: #000000;
}
#side-menu ul.side-txtlink > li:before {
  background: url(../images/sub/side_list_icon.png) no-repeat center center;
  background-size: cover;
  display: block;
  content: '';
  width: 3px;
	height: 7px;
	position: absolute;
	left: 13px;
  top: 8px;
}
#side-menu ul.side-txtlink ul.side-txtlink {
  margin: 0;
  padding-top: 6px;
  font-size: 15px;
  font-size: 1.5rem;
}
#side-menu ul.side-txtlink ul.side-txtlink > li:before {
  display: none;
}

#side-menu .side-menu-tag {
  margin: 0 5px 50px 5px;
}
#side-menu img{
	width: 100%;
	height: auto;
}
.side-voice{
	border: 1px solid #fdedec;
}
.side-voice-inner{
	padding: 10px 20px 20px;
}
.side-bnr{
	padding-bottom: 40px;
}
.m-jisseki{
	background: #fdedec;
	padding: 10px;
	text-align: center;
	margin-bottom: 20px;
}
.jisseki-dl{
	padding: 0 20px;
}
.jisseki-dl img{
	padding-bottom: 10px;
}

#side-menu .side-menu-tag .widget-title {
  display: none;
}
#side-menu .side-menu-tag .widget_categories .widget-title {
  display: block;
	background: #fdedec;
	padding: 10px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: inherit;
	margin-top: 40px;
}
.widget h2{
	  background: #fdedec;
    padding: 10px;
	margin-top: 40px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: inherit;
}
.widget ul{
	margin: 20px 0 0 30px;
}
.widget ul li{
 list-style: outside none none;
	position:relative;
	display: block;
   padding-bottom: 10px;
}
.widget ul li:before {
    background: url(../images/sub/side_list_icon.png) no-repeat center center;
    background-size: cover;
    display: block;
    content: '';
    width: 3px;
    height: 7px;
    position: absolute;
    left: -13px;
    top: 8px;
}
#side-menu .side-menu-tag a {
  color: #3b3b3d;
  text-decoration: none;
}
#side-menu .side-menu-banner {
  display: block;
}
#side-menu .side-menu-banner li {
  display: block;
  margin-bottom: 27px;
}
#side-menu .side-menu-banner li:last-child {
  margin-bottom: 0;
}
#side-menu .side-menu-banner li a {
  display: block;
}
#side-menu .side-menu-banner li a {
  display: block;
  width: 100%;
  height: auto;
}
#side-menu a {
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}
#side-menu a:hover {
  opacity: 0.5;
}
.search-form {
  padding: 30px 0 10px 0;
}
.search-form input {
  padding: 0.5em 1em;
  font-size: 18px;
  font-size: 1.8rem;
}
/**
 * 6.0 Sidebar(Navigation)
 * ----------------------------------------------------------------------------
 */
/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */
#entry-content .wp_rp_content {
  display: block !important;
  padding-top: 50px;
}


#wp_rp_first h3.related_post_title {
  margin: 0 0 25px 0 !important;
  padding: 12px 13px 10px 200px !important;
	font-size: 16px!important;
	font-size: 1.6rem!important;
	font-weight: 300!important;
	color: #ff9999;
	background: url("../images/bg-relatedpost@2x.png") no-repeat center left;
	background-size: 180px;
}
h3.related_post_title.newpost {
  margin: 0 0 25px 0 !important;
  padding: 12px 13px 10px 150px !important;
	font-size: 16px!important;
	font-size: 1.6rem!important;
	font-weight: 300!important;
	color: #ff9999;
	background: url("../images/bg-newpost@2x.png") no-repeat center left;
	background-size: 130px;
}

#main-content #entry-content  h3.related_post_title:after{
	border: none;
}
#entry-content ul.related_post li {
  width: 150px !important;
	margin-right: 42px!important;
	list-style:none
}
#entry-content ul.related_post li:last-child {
  margin-right: 0 !important;
}
ul.related_post li a {
  color: #404040;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
	margin-bottom:10px
}
ul.related_post li a:hover {
  opacity: 0.5;
}
#entry-content ul.related_post li img {
  width: 100% !important;
	max-height:120px;
  border-radius: inherit !important;
  box-shadow: inherit !important;
	object-fit: cover; 
}

.profile-block{
	background:#fff9f7;
	padding:40px;
    margin-bottom: 40px
}
.profile-block > img{
	padding-bottom :20px;
}
#main-content #entry-content  .profile-block h3{
	font-size:21px;
	font-size:2.1rem;
	font-weight:300;
	margin-bottom:20px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#main-content #entry-content  .profile-block  h3:after{
	content:none
}
.flexbox{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#main-content #entry-content .profile-block .flexbox p{
	font-size:14px;
	font-size:1.4rem;	
}
.profile-block .flexbox img{
	width:30%;
	height:auto;
	align-self: flex-start;
}
.writer-txt{
	width:65%;
}
a.writer-link{
	color:#f95555;
}
a.writer-link:hover{
	text-decoration:underline
}
.arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 18px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.writer-link::before{
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ff9999;
}
.writer-link::after{
    left: 3px;
    width: 3px;
    height: 3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */
#footer-wrapper {
  background-color: #fdedec;
  padding: 70px 20px;
  text-align: center;
}
#footer-wrapper > div #ft-logo {
  width: 230px;
  height: auto;
  margin: 0 auto;
}
#footer-wrapper > div #ft-logo a {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}
#footer-wrapper > div #ft-logo a:hover {
  opacity: 0.5;
}
#footer-wrapper > div ul {
  margin: 60px;
  font-size: 12px;
  font-size: 1.2rem;
  tline-height: 1.8;
  letter-spacing: 0.2em;
}
#footer-wrapper > div ul > li {
  display: inline;
  list-style: outside none none;
  line-height: 1.5;
  margin-left: 27px;
}
#footer-wrapper > div ul > li a {
  color: #404040;
  text-decoration: none;
}
#footer-wrapper > div ul > li a:hover, #footer-wrapper > div ul > li a:active {
  text-decoration: underline;
}
#footer-wrapper > div p {
  clear: both;
  padding-top: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-size: 1.2rem;
}
.to_top {
  background: url("../images/pagetop.png") no-repeat center center;
  background-size: contain;
  width: 52px;
  height: 52px;
  display: block;
  position: fixed;
  bottom: 30px;
  right: 40px;
  cursor: pointer;
  display: none;
  z-index: 100;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}
.to_top:hover, .to_top:active {
  opacity: 0.5;
}
/**
 * 10.0 Edit
 * ----------------------------------------------------------------------------
 */
/**
 * 8.0 Media Queries
 * ----------------------------------------------------------------------------
 */
@media screen and (max-width: 1080px) { /* デスクトップ */
  #contents .content {
    width: 90%;
  }
	#n2-ss-2-align{
		margin-top: 0;
	}
	#header div{
	width: 98%
	}
  #header-logo {
    width: 350px;
    height: auto;
    margin: 25px 0 0 20px;
  }
  #global-navi ul {
    font-size: 12px;
    font-size: 1.2rem;
  }
  #global-navi a span {
    padding: 0 1.2em;
  }

	
	
	
	
  .three-column {
    width: 100%;
  }
  .three-column li {
    width: 32%;
    margin-right: 2%;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .three-column li img {
    display: block;
    width: 100%;
    height: auto;
  }
  #ft-mynavi {
    width: 90%;
    margin: 0 auto 100px auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #eye-catch {
    padding-top: 0;
  }
  #eye-catch img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 812px) { /* タブレtット768px */
  /*-----------------------
Edit
-----------------------*/
  #global-navi {
    display: none;
  }
  #l-navi {
    display: none;
  }
  /*-----------------------
Basic Structure
-----------------------*/
  #contents {
    padding-bottom: 0px;
  }
  /*-----------------------
Parts
-----------------------*/
  /* smart */
  .hide-smart {
    display: block;
  }
  /*--------------------------
layout
--------------------------*/
  /* 横3列 */
  .three-column::after {
    content: "";
    display: block;
    clear: both;
  }
  .three-column li {
    display: block;
    width: 48%;
    margin-right: 0;
    margin-bottom: 14px;
    padding: 0 0 14px 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .three-column li:nth-child(odd) {
    float: left;
    clear: both;
  }
  .three-column li:nth-child(even) {
    float: right;
  }
  .three-column li:last-child {
    margin-bottom: 0;
  }
  /* 見出し（テクスチャ帯） */
  .heading-texture-line {
    margin-bottom: 20px;
    padding: 0.4em 0 7px 0;
    font-size: 20px;
    font-size: 2.0rem;
  }
  /* 見出し（テクスチャ帯） */
  .heading-small-line {
    margin-bottom: 15px;
    padding: 0.4em 0 7px 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  /* 見出し（オレンジ色囲み） */
  .heading-frame {
    margin-bottom: 12px;
    padding: 0.3em;
    font-size: 15px;
    font-size: 1.5rem;
  }
  /* 見出し（灰色囲み） */
  .heading-frame-small {
    margin-bottom: 20px;
    padding: 0.3em;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
  /* 段落 */
  #contents p {
    margin-bottom: 1.8em;
    font-size: 14px;
  }
  /* list*/
  ul.list-set > li:before {
    content: '・';
    color: #A05415;
    font-size: 12px;
    line-height: 10px;
    position: absolute;
    left: -16px;
    top: 6px;
  }
  /*-----------------------
Header
-----------------------*/
  /* header */
  #header {
    height: 40px;
  }
  #header div {
    width: 100%;
  }
  #header div #header-logo {
    width: 140px;
    height: auto;
    float: none;
    margin: 10px auto 0 auto;
  }
  /* drawer slide menu / button */
  #smart-navi {
    overflow-y: auto;
  }
  body.drawer-opened {
    height: 100%;
  }
  /* この1行を付けないと、メニュースクロール時にコンテンツもスクロールしてしまう。しかしするとメニュータップでページTOPに戻る*/
  body.drawer-opened #sb-site {
    height: 100%;
    position: fixed;
    top: 0;
  }
  /* サイドバー内での滑らかな動き */
  #smart-navi {
    -webkit-overflow-scrolling: touch;
  }
  #smart-navi-inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  #smart-navi {
    background: #f9c2b8;
    width: 240px;
    height: 100%;
    padding-top: 40px;
    color: #fff;
    position: fixed;
    top: 0;
    right: -240px;
    z-index: 300;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
  }
  #smart-navi ul {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #smart-navi ul li {}
  #smart-navi ul li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
  }
  #smart-navi ul li a:hover {
    background: #46306e;
    color: #fff;
  }
  .smart-navi-banner {
    width: 90%;
    margin: 0 auto 10px auto;
  }
  .smart-navi-banner a {
    display: block;
  }
  .smart-navi-banner a img {
    display: block;
    width: 100%;
    height: auto;
  }
  .smart-navi-banner a:hover img {
    opacity: 0.6;
  }
	html {
    margin-top: 0!important;
}
  #smart-btn {
    width: 28px;
    padding: 13px 10px 0 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    cursor: pointer;
  }
  .smart-btn-bar {
    background: #f4988c;
    display: block;
    height: 2px;
    margin-bottom: 6px;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
  }
  #overlay {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 500ms cubic-bezier(1, 0, 0, 1);
    transition: all 500ms cubic-bezier(1, 0, 0, 1);
  }
  /** ドロワー開放時のスタイル **/
  body.drawer-opened #smart-navi {
    right: 0;
  }
  body.drawer-opened #smart-btn :nth-child(1) {
    transform: translate(0, 8px) rotate(45deg);
    -webkit-transform: translate(0, 8px) rotate(45deg);
  }
  body.drawer-opened #smart-btn :nth-child(2) {
    transform: translate(-20px, 0);
    -webkit-transform: translate(-20px, 0);
    opacity: 0;
  }
  body.drawer-opened #smart-btn :nth-child(3) {
    transform: translate(0, -8px) rotate(-45deg);
    -webkit-transform: translate(0, -8px) rotate(-45deg);
  }
  body.drawer-opened #overlay {
    left: -240px;
    z-index: 250;
    opacity: 0.6;
  }
  body.drawer-opened .smart-btn-bar {
    background: #fff;
  }
  /*-----------------------
index
-----------------------*/
  
	.index-pickup{
		width: auto;
		padding: 40px 20px 0;
	}
	.index-pickup-box {
    width: 40%;
    margin: 0 20px;
}
	
#sec02-txt {
    width: 45%;
		padding: 35px;
}
	.sec02-inner{
		height: 450px;
	}
	.bd {
    width: auto;
		margin: 40px 20px;
		padding: 40px;
		display: block;
		height: auto;
	}
	#sec03-txt {
    width: 350px;
}
	#sec03 img {
    right: -50px;
    width: 49%;
    height: auto;
}
	#sec04 ul{
		width: auto;
	margin: 0 20px 80px;
	}
	#sec04 ul li{
		height: 200px;
		font-size: 1.8rem;
	}
	#index-info{
		padding-bottom: 20px;
	}
	#index-info ul{
		width: auto;
	}
	
	
  /*-----------------------
Page "sub-page(page, category, single-page.)"
-----------------------*/
  main#contents {
    margin-top:0
  }
  body.index main#contents {
    margin-top: 0;
  }
  #category-title {
    height: 100px;
    position: relative;
  }
  #category-title > h1 p {
    font-size: 2.0rem;
  }
  #category-title > h1 p::after {
    background: url(../images/sub/h1_img@2x.png) no-repeat center center;
    background-size: cover;
    width: 115px;
    height: 12px;
    margin: 5px auto 0 auto;
  }
  .page-content-wrapper {
    padding: 35px 0 50px 0;
  }
  .page-content {
    width: 100%;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #main-content {
    width: 100%;
    float: none;
  }
  #main-header {
    padding: 19px 0 0;
  }
  #main-header #main-header-catch {
    font-size: 1.3rem;
    margin: 0 0 6px 0;
    padding-bottom: 4px;
  }
  #main-header #main-header-heading {
    font-size: 2.1rem;
    padding-bottom: 0;
  }
  #main-header #main-header-comment {
    font-size: 1.3rem;
  }
  /* 以下、投稿範囲（WordPressの本文投稿部分）の要素コーディング（できるだけclass名は付けない） */
  #main-content #entry-content {
    padding: 19px 0 20px;
    margin-bottom: 40px;
  }
  #main-content #entry-content h3 {
    font-size: 2rem;
    margin: 0 0 18px 0;
    padding: 12px 10px 10px 10px;
  }
	#wp_rp_first h3.related_post_title{
	padding: 12px 13px 10px 150px !important;
	background-size: 140px;
	}
  #main-content #entry-content h4 {
    font-size: 1.8rem;
    margin: 0 0 18px 0;
    padding: 14px 0 12px 0;
  }
  #main-content #entry-content h5 {
    font-size: 1.6rem;
    margin: 0 0 14px 0;
  }
  #main-content #entry-content h5:before {
    background: url(../images/sub/h5_img@2x.png) no-repeat center center;
    background-size: cover;
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: -22px;
    top: 2px;
  }
  #main-content #entry-content h6 {
    font-size: 1.6rem;
    margin: 0 10px 17px 0;
    padding: 4px 0 4px 20px;
    width: auto;
  }
  #main-content #entry-content p {
    font-size: 1.4rem;
    margin: 0 0 1em 0;
  }
  #main-content #entry-content table {
    font-size: 1.4rem;
    margin-bottom: 21px;
  }
  #main-content #entry-content table th {
    padding: 12px 10px;
  }
  #main-content #entry-content table td {
    padding: 12px 16px;
  }
  #main-content #entry-content img.aligncenter {
    display: block;
    max-width: 80%;
    margin: 0 auto 35px auto;
  }
  #main-content #entry-content img.size-large {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  #main-content #entry-content img.size-medium {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  #main-content #entry-content ul.ul-large {
    margin: 0 0 38px 24px;
    font-size: 1.3rem;
  }
  #main-content #entry-content ul.ul-large > li {
    margin-bottom: 14px;
  }

  #main-content #entry-content ul.ul-medium {
    margin-left: 17px;
    font-size: 1.3rem;
  }
  #main-content #entry-content ul.ul-medium > li {
    margin-bottom: 4px;
  }
  #main-content #entry-content ul.ul-medium > li:before {
    font-size: 12px;
    left: -14px;
    top: 4px;
  }
  #main-content #entry-content .ec-border-box {
    width: auto;
    margin: 0 10px 30px 10px;
    padding: 16px 18px 16px 18px;
  }
  #main-content #entry-content .ec-three-column-box {
    width: auto;
    margin: 0 10px;
    display: block;
  }
  #main-content #entry-content .ec-three-column-box > div {
    width: 100%;
  }
  #main-content #entry-content .ec-three-column-box > div img {
    margin-bottom: 8px;
  }
  #main-content #entry-content .ec-three-column-box > div a p {
    font-size: 1.3rem;
  }
  #main-content #entry-content .ec-link-button a {
    display: block;
    width: 100%;
    padding: 13px 20px;
    font-size: 1.6rem;
  }
	.profile-block > img {
    padding-bottom: 20px;
    margin: 0 auto;
    display: block;
}
	.profile-block .flexbox{
		display:block;
	}
	.profile-block .flexbox img {
    width: auto;
    height: auto;
    align-self: flex-start;
    margin: 0 auto;
    display: block;
}
	#main-content #entry-content .profile-block h3{
		text-align:center;
	}
	.writer-txt {
    width: 100%;
}
	
  /* sidenavi */
  #side-menu {
    width: 100%;
    float: none;
  }
  #side-menu .heading-side-menu {
    margin-bottom: 14px;
  }
  #side-menu .heading-side-menu img {
    display: block;
    width: 100%;
    height: auto;
  }

  #side-menu .heading-side-menu-txt {
    font-size: 1.8rem;
    width: auto;
    margin: 0 5px 16px 5px;
    padding: 0 0 12px 0;
  }
  #side-menu .side-menu-tag {
    margin: 0 5px 30px 5px;
  }
  #side-menu .side-menu-banner li {
    margin-bottom: 21px;
  }
  #side-menu .side-menu-banner li a img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* Widgets */

  #entry-content ul.related_post li {
    width: 48% !important;
    margin: 0 0 15px 0 !important;
    clear: inherit !important;
  }
  #entry-content ul.related_post li:last-child {
    margin-right: 0 !important;
  }
  #entry-content ul.related_post li:nth-child(odd) {
    float: left !important;
    clear: both !important;
  }
  #entry-content ul.related_post li:nth-child(even) {
    float: right !important;
  }
  #entry-content ul.related_post li a {
    float: none !important;
  }
  #entry-content ul.related_post {
    display: block !important;
  }
  #entry-content ul.related_post::after {
    content: "";
    display: block;
    clear: both;
  }
#entry-content ul.related_post li img{
		height:230px!important
	}
  /*-----------------------
footer
-----------------------*/
  #footer-wrapper {
    padding: 16px 14px 16px 14px;
  }
  #footer-wrapper > div {
    width: 100%;
  }
  #footer-wrapper > div #ft-logo {
    display: none;
  }
  #footer-wrapper > div ul {
    display: none;
  }
  #footer-wrapper > div p {
    padding-top: 0;
    line-height: 1.4;
  }
  .to_top {
    display: none !important;
  }
}
@media screen and (max-width: 414px) { /* モバイル */
	html{
		margin-top: 40px !important;
	}
	.index-pickup {
    padding: 20px 20px 0;
}
	.index-pickup{
		display: block;
	}
	.index-pickup h2{
		font-size:2.1rem
	}
	.index-pickup-box{
		width: auto;
		margin:0 0 40px
	}
	.index-pickup img{
		width: 100%;
	}
	#bg-sec02{
		width: 100%;
	}
	#bg-sec02{
		display: none;
	}
	
		#sec02{
		margin-top: 40px;
		background: #fdedec;
	}
	#sec02-img{
		text-align: center;
		padding: 0 20px ;
	}
	.sec02-inner{
		height: 100%;
		padding: 40px 0;
	}
	.sec02-inner:before{
		padding: 0;
	}
	#sec02-txt{
		width: auto;
		height:auto;
		padding: 35px;
		right: 0;
	   margin: -6px 20px 0;
		position: relative;
	}
	#sec02-img img{
		position: relative;
		width: 100%;
	}
	#sec03-txt {
    width: auto;
}
	#sec03 img {
    right: 0;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
	 position: relative;
}
	#sec04 ul{
	 margin: 0 20px 40px;
	}
	.bd{
		padding: 30px;
	}
	#sec04 ul li{
		margin-bottom: 2%;
		width: 49%;
	}
	#index-info{
		padding: 40px 20px;
	}

	#index-info ul li{
		width: 48%;
	}
	input,textarea{
		width: 100%;
		box-sizing:border-box;
		-moz-box-sizing:border-box; /* Firefox */
		-webkit-box-sizing:border-box; /* Chrome, Safari */
	}
	#index-method .date {
    padding-bottom: 10px;
}
	#index-method li:nth-child(3) ,
	#index-method li:nth-child(4) {
		padding-bottom:0;
	}
	#index-contact dd textarea{
		margin-bottom: 0;
	}
	#fotter-sns ul {
    width: auto;
	}
	#fotter-sns ul li{
		width: 24.3%;
		padding-bottom: 4vh;
	}
	#index-contact{
		padding: 40px 20px 20px;
	}
	#fotter-sns ul{
		margin-bottom:40px;
	}
	.page-content-wrapper{
		padding: 0;
	}
	.articlelist li img{
		height:120px
	}
	#main-content #entry-content{
		padding:0
	}
	#main-content #entry-content h2{
		font-size:2rem;
		padding: 10px 0;
	}
	#index-info ul li img{
		max-height:128px
	}
	.home .cate{
		font-size:12px;
		letter-spacing:0
	}
	.home .blog-title{
		font-size:13px;
		letter-spacing:0
	}
	#index-method span.cate{
		display:block;
		width: 100%;
	}
	#entry-content ul.related_post li img{
		height:120px!important
	}
	#category-title > h1 p{
		font-size:17px
	}
}
