@charset "utf-8";

:root {
	--main: #16ae7d;
	--sub:  #bdbdbd;
	--text: #000;
	--link: #d56223;
	--black:#2a3233;
	--base: #e2e2e1;
	--back: #f2f1f1;
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: 'Outfit', sans-serif;
	--ease: all 0.3s ease;
}

/* --------------------------------------------------
    リセット
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
    margin: 0;
    padding: 0;
	font-family: var(--font-jp);
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
  vertical-align: bottom;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
ol, ul {
  letter-spacing: -.4em;
}
li {
  letter-spacing: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
figure:not(.wp-block-image) {
  margin: 0;
}
iframe {
  vertical-align: bottom;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------
    base
-------------------------------------------------- */
html {
  height: 100%;
}
body {
	font-family: var(--font-jp);
	font-size: 14px;
	line-height: 1.8;
	min-width: 1200px;
	counter-reset: num 0;
	overflow-x: hidden;
	background: #fff;
	outline: none;
}
a {
	color: var(--main);
	text-decoration: none;
}
a:hover {
	color: var(--link);
	text-decoration: none;
}
a.op:hover img {
  opacity: 0.7;
}
#mainContents a:hover {
	text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
    -webkit-text-size-adjust: 100%;
  }
  body.openNav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
  }
}


.clm_wrap {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.clm_wrap > .sidebar {
	width: 300px;
	min-width: 300px;
	padding: 30px;
	margin: 0;
	position: relative;
	background: #fafafa;
}

/* --------------------------------------------------
    structure
-------------------------------------------------- */
.inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
#post.inner {
    width: 100%;
    max-width: 1100px;
    padding: 0 0 50px;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width: 640px) {
  .inner {
    width: calc(100% - 60px);
  }
	#category.inner {
		width: calc(100%);
		padding: 0 0 30px;
	}
    #post.inner {
        width: calc(100% - 60px);
        max-width: 100%;
        padding: 0 0 30px;
        margin: 0 auto;
        position: relative;
    }
  #header .inner,
  #footer .inner {
    width: 98%;
	  flex-wrap: wrap;
  }
}
/* --------------------------------------------------
    アニメーション共通
-------------------------------------------------- */
.animated[class*="slideUp"], .animated[class*="slideDown"], .animated[class*="slideLeft"], .animated[class*="slideRight"],
.animated [class*="slideUp"], .animated [class*="slideDown"], .animated [class*="slideLeft"], .animated [class*="slideRight"] {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
.slideUp {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.slideDown {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.slideLeft {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.slideRight {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
/* --------------------------------------------------
    Tableレイアウト
-------------------------------------------------- */
table {
  width: 100%;
}
th, td {
  padding: 15px;
  border: #ccc 1px solid;
}
th {
  background: #eee;
}
thead th {
  background: #e5e5e5;
}
.table01 th {
  width: 30%;
  text-align: center;
}
@media screen and (max-width:640px) {
  th, td {
    padding: 10px;
  }
  .table01 {
    margin: 0 auto;
  }
  .table01 th, .table01 td {
    width: auto;
    display: block;
    border-top: none;
  }
  .table01 tr:first-child th {
    border-top: #ccc 1px solid;
  }
  .table02 {
    display: block;
    position: relative;
  }
  .table02 th,
  .table02 td {
    width: 100% !important;
    display: block;
  }
  .table02 thead {
    display: block;
    float: left;
    overflow-x: scroll;
  }
  .table02 thead th {
    width: auto;
    display: block;
  }
  .table02 tbody {
    width: auto;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .table02 tbody tr {
    display: inline-block;
    margin: 0 -3px;
  }
  .table02 tbody td {
    display: block;
  }
  /* table横スクロール */
  .scroll {
    font-size: 14px;
    overflow: auto;
    white-space: nowrap;
  }
  .scroll::-webkit-scrollbar {
   height: 8px;
  }
  .scroll::-webkit-scrollbar-track {
   background: #fff;
  }
  .scroll::-webkit-scrollbar-thumb {
   background: #222;
  }
}
/* --------------------------------------------------
    【注意書き】
-------------------------------------------------- */
.notes > li {
  text-indent: -1em;
  padding-left: 1em;
}
.notes > li:before {
  content: '※';
}
.notes ul li {
  text-indent: 0;
}
/* --------------------------------------------------
    【リストデザイン】
-------------------------------------------------- */
.disc {
  list-style: disc;
  margin-left: 1.5em;
}
.decimal {
  list-style: decimal;
  margin-left: 1.5em;
}
/* 括弧付数字 */
.paren {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.paren > li::before{
  counter-increment: cnt;
  content: '(' counter(cnt) ') ';
  margin-left: -1.5em;
}
/* 丸数字 */
.bracket {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.bracket > li::before{
  width: 1.4em;
  height: 1.4em;
  counter-increment: cnt;
  content: counter(cnt);
  font-size: 80%;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  align-items: center;
  margin-left: -1.8em;
  margin-right: 0.3em;
  border: 1px solid;
  border-radius: 50%;
}
/* --------------------------------------------
  【Flexbox】
-------------------------------------------- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-evenly {
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex .flex-col2 {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.flex .flex-col3 {
  width: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.flex .flex-col4 {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.flex img:not([data-src]),
.flex img.lazy-loaded {
  height: auto;
}
/* --------------------------------------------------
    【横並びリスト】
-------------------------------------------------- */
.col > li {
  display: inline-block;
  vertical-align: top;
}
.col2 > li {
  width: 580px;
  margin: 40px 40px 0 0;
}
.col2 > li:nth-child(2n) {
  margin-right: 0;
}
.col3 > li {
  width: 380px;
  margin: 30px 30px 0 0;
}
.col3 > li:nth-child(3n) {
  margin-right: 0;
}
.col4 > li {
  width: 285px;
  margin: 20px 20px 0 0;
}
.col4 > li:nth-child(4n) {
  margin-right: 0;
}
.col2 > li:nth-child(-n+2),
.col3 > li:nth-child(-n+3),
.col4 > li:nth-child(-n+4) {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .sp_col > li {
    width: auto !important;
    display: block;
    margin: 0 auto 20px !important;
  }
  .sp_col > li:last-child {
    margin-bottom: 0 !important;
  }
  .sp_col2 > li {
    width: 48% !important;
    margin: 4% 4% 0 0 !important;
  }
  .sp_col2 > li:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .sp_col2 > li:nth-child(2n) {
    margin-right: 0 !important;
  }
}
/* --------------------------------------------------
    【画像フロート】
-------------------------------------------------- */
.imgBoxL::after,
.imgBoxR::after {
  content: '';
  display: block;
  clear: both;
}
.imgBoxL .txt,
.imgBoxR .img {
  float: right;
}
.imgBoxR .txt,
.imgBoxL .img {
  float: left;
}
.imgBoxL img,
.imgBoxR img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .imgBoxL .txt,
  .imgBoxR .txt,
  .imgBoxL .img,
  .imgBoxR .img {
    width: auto !important;
    float: none;
  }
  .imgBoxL img,
  .imgBoxR img {
    display: block;
    margin: 0 auto;
  }
}
/* --------------------------------------------------
    【PostLink】
-------------------------------------------------- */
.post-link {
  margin-top: 40px;
}
.post-link .prev, .post-link .next {
  width: 200px;
}
.post-link a {
  background: #fff;
  color: #222;
  display: block;
  text-align: center;
  padding: 10px 0;
  border: #ccc 1px solid;
  position: relative;
}
.post-link a::before {
  width: 10px;
  height: 10px;
  content: '';
  display: block;
  border-top: #222 1px solid;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.post-link .prev a::before {
  border-left: #222 1px solid;
  left: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.post-link .next a::before {
  border-right: #222 1px solid;
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.post-link a:hover {
  text-decoration: none !important;
}
.post-link .prev a:hover::before {
  left: 15px;
}
.post-link .next a:hover::before {
  right: 15px;

}
@media screen and (max-width: 640px) {
  .post-link .prev, .post-link .next {
    width: 40%;
    font-size: 14px;
  }
  .post-link .prev a {
    padding-left: 15px;
  }
  .post-link .next a {
    padding-right: 15px;
  }
  .post-link a::before {
    width: 8px;
    height: 8px;
  }
}
/* --------------------------------------------------
    【PageNavi】
-------------------------------------------------- */
.wp-pagenavi {
  text-align: center;
  margin: 60px auto;
  position: relative
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 8px 16px;
  border: #222 1px solid;
  border-radius: 3px;
	color: var(--text);
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background: #222;
  color: #fff;
  font-weight: normal;
  text-decoration: none !important;
}
.wp-pagenavi .pages {
  font-size: 14px;
  border: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto
}
.wp-pagenavi .pages:after {
  content: 'ページ目'
}
.wp-pagenavi .first,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .last {
  font-size: 0;
}
.wp-pagenavi .first::before,
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .last::before {
  font-size: 16px;
}
.wp-pagenavi .first::before {
  content: '« 先頭';
}
.wp-pagenavi .previouspostslink::before {
  content: '‹ 前へ';
}
.wp-pagenavi .nextpostslink::before {
  content: '次へ ›';
}
.wp-pagenavi .last::before {
  content: '最後 »';
}
.wp-block-embed .video_inner {
  padding-top: 56.25%;
  position: relative;
}
.wp-block-embed .video_inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
	.wp-pagenavi {
		margin: 30px auto;
	}
  .wp-pagenavi a,
  .wp-pagenavi span {
    display: inline-block
  }
  .wp-pagenavi .first,
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .last {
    display: inline-block
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before,
  .wp-pagenavi .last::before {
    font-size: 14px;
  }
  .wp-pagenavi .pages {
    font-size: 12px;
    display: none;
    padding: 0
  }
	.wp-pagenavi .page.larger,
	.wp-pagenavi .extend,
	.wp-pagenavi .first,
	.wp-pagenavi .last {
		display: none;
	}
}
/* --------------------------------------------------
    ぱんくず
-------------------------------------------------- */
#breadcrumb {
    display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	width: 100%;
	max-width: 1200px;
    font-size: 10px;
    text-align: left;
    padding: 10px 0;
    margin: 0 auto;
	background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
	transform: translate(-50%,0);
    z-index: 0;
	color: var(--text);
}
#breadcrumb::before {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
#breadcrumb span,
#breadcrumb a {
	color: var(--text);
}
#breadcrumb a:hover,
#breadcrumb a:hover span {
	color: var(--link);
}
@media screen and (max-width: 640px) {
  #breadcrumb {
    display: none;
  }
}
/* --------------------------------------------------
    PC・スマホ切り替え
-------------------------------------------------- */
.mb {
  display: none !important;
}
.pcBlock {
  display: block;
}
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: initial !important;
  }
  .pcBlock {
    display: initial !important;
  }
  .mbBlock {
    display: block !important;
  }
}

/* --------------------------------------------------
    【ビジュアルエディタ対応】
-------------------------------------------------- */
/* 基本 */
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
blockquote {
  background: #f5f5f5;
  padding: 1.5em;
  margin: 1.5em;
  border: #ccc 1px solid;
  border-radius: 10px;
  position: relative;
}
blockquote::before,
blockquote::after {
  font-size: 4em;
  font-family: "ＭＳ Ｐゴシック", sans-serif;
  opacity: 0.2;
  position: absolute;
}
blockquote::before {
  top: -1.2rem;
  left: 0.2rem;
  content: '“';
}
blockquote::after{
  bottom: -3.8rem;
  right: 0.2rem;
  content: '”';
}
blockquote cite {
  font-size: 0.8em;
  opacity: 0.5;
}
hr {
  margin: 1.5em 0;
}
#post h1, #post h2, #post h3, #post h4, #post h5, #post h6, #post p, #post ul, #post ol {
  margin-bottom: 1.5em;
}
.wp-block {
  max-width: 1200px;
}
.wp-block-gallery {
  margin: 0 !important;
}
.wp-block-table {
  margin: 1.5em 0;
}
.wp-block-column .wp-block-image {
  margin: 0;
}
@media screen and (max-width: 640px) {
  /* 基本 */
  .alignleft ,
  .alignright {
    float: none !important;
    margin: 0 auto !important;
  }
  .wp-block-column:not(:first-child) {
    margin-top: 20px;
  }
  figure.wp-block-image, figure.wp-block-embed {
    margin-left: auto;
    margin-right: auto;
  }
  .table_scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .table_grad {
    position: relative;
    white-space: nowrap;
  }
  .table_grad::after {
    width: 20%;
    height: 100%;
    content: '';
    background: linear-gradient(to right, rgba(255,255,255,0) 20%, #fff 100%);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* --------------------------------------------------
    【テキストスタイル】
-------------------------------------------------- */
.center {text-align: center !important;}
.right {text-align: right !important;}
.left {text-align: left !important;}
.top {vertical-align: top !important;}
.bottom {vertical-align: bottom !important;}

.bold{ font-weight:bold; }
.normal {font-weight:normal;}
.underline {text-decoration:underline;}
.italic {font-style:italic;}

.f10 {font-size:10px !important;}
.f11 {font-size:11px !important;}
.f12 {font-size:12px !important;}
.f13 {font-size:13px !important;}
.f14 {font-size:14px !important;}
.f15 {font-size:15px !important;}
.f16 {font-size:16px !important;}
.f18 {font-size:18px !important;}
.f20 {font-size:20px !important;}
.f22 {font-size:22px !important;}
.f24 {font-size:24px !important;}
.f26 {font-size:26px !important;}
.f28 {font-size:28px !important;}
.f30 {font-size:30px !important;}
.f32 {font-size:32px !important;}
.f34 {font-size:34px !important;}
.f36 {font-size:36px !important;}

.fMincho {font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;}
.fGothic {font-family: var(--font-jp);}

.lh10 {line-height:1;}
.lh12 {line-height:1.2;}
.lh15 {line-height:1.5;}
.lh20 {line-height:2;}

/* --------------------------------------------------
    【余白】	5px未満は個別に追加
-------------------------------------------------- */
.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt60 {margin-top: 60px !important;}
.mt80 {margin-top: 80px !important;}
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb80 {margin-bottom: 80px !important;}
.ml00 {margin-left: 0px !important;}
.ml05 {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml20 {margin-left: 20px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml60 {margin-left: 60px !important;}
.mr00 {margin-right: 0px !important;}
.mr05 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr60 {margin-right: 60px !important;}

.pt00 {padding-top: 0px !important;}
.pt05 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt40 {padding-top: 40px !important;}
.pt60 {padding-top: 60px !important;}
.pt80 {padding-top: 80px !important;}
.pb00 {padding-bottom: 0px !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb80 {padding-bottom: 80px !important;}
.pl00 {padding-left: 0px !important;}
.pl05 {padding-left: 05px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl30 {padding-left: 30px !important;}
.pl40 {padding-left: 40px !important;}
.pl60 {padding-left: 60px !important;}
.pr00 {padding-right: 00px !important;}
.pr05 {padding-right: 05px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr30 {padding-right: 30px !important;}
.pr40 {padding-right: 40px !important;}
.pr60 {padding-right: 60px !important;}

/* --------------------------------------------------
    【フロート】	#は削除
-------------------------------------------------- */
.fltL { float:left; }
.fltR { float:right; }
.both 	{ clear:both; }
.both05 { clear:both;height:05px;line-height:1;font-size:1px; }
.both10 { clear:both;height:10px;line-height:1;font-size:1px; }
.both15 { clear:both;height:15px;line-height:1;font-size:1px; }
.both20 { clear:both;height:20px;line-height:1;font-size:1px; }
.both30 { clear:both;height:30px;line-height:1;font-size:1px; }
.both40 { clear:both;height:40px;line-height:1;font-size:1px; }
.both50 { clear:both;height:50px;line-height:1;font-size:1px; }

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
/* --------------------------------------------------
    forms
-------------------------------------------------- */
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=time], input[type=number], input[type=password], textarea, select {
  font-size: 16px;
  padding: 5px 10px;
  margin: 2px;
  border: #ccc 1px solid;
  border-radius: 3px;
}
input[type=checkbox], input[type=radio] {
  font-size: 16px;
  margin: 3px 3px 0 5px;
}
input[type=submit], button {
  background: #eee;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  border: #ccc 1px solid;
  border-radius: 5px;
}
input[type=submit]:hover, button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=file], textarea {
    width: 100%;
  }
  input[type=submit], button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}


/*アンダーライン*/
.u_yellow { background: linear-gradient(transparent 50%,rgba(255,252,107,.69) 50%); }
.u_red { background: linear-gradient(transparent 50%,rgba(255,182,193,.3) 50%); }
.u_blue { background: linear-gradient(transparent 50%,rgba(0,75,190,.3) 50%); }
.u_green { background: linear-gradient(transparent 50%,rgba(0,180,100,.3) 50%); }