@charset "utf-8";
html, body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: rgb(0, 0, 0);
  line-height: 1.6;
  margin: 0;
}

h2 {
  color: #FB8C00;
  font-size: 34px;
  margin-bottom: 60px;
}
h3 {
  padding: 0.5em;
  color: #494949;
  background: #fff5ea;
  border-left: solid 5px #FB8C00;
  font-size: 26px;
  margin-top: 60px;
}
h4 {
  color: #000;
  padding: 1em 0.8em;
  border-top: solid 3px #FB8C00;
  border-bottom: solid 3px #FB8C00;
  font-size: 22px;
}
h5 {
  color: #4ca771;
  font-size: 20px;
}
/*a {
  text-decoration: none;
}*/
a:hover {
  opacity: 0.6;
}
img {
  max-width: 100%;
}
.w400 {
  font-weight: 400;
}
.w600 {
  font-weight: 600;
}
.w800 {
  font-weight: 800;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.txt-center {
  text-align: center;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.button {
  background-color: #FB8C00;
  border-radius: 9999px;
  padding: 15px 30px;
  display: table;
  cursor: pointer;
  color: #fff;
  box-shadow: 0px 10px 5px -6px rgba(0, 0, 0, 0.3);
  margin: 20px auto;
  text-decoration: none;
}
.button2 {
  background-color: #FFD740;
  color: #000;
}
.button span {
  color: #FB8C00;
  text-shadow: 0px 3px 0px #fff, -3px 5px 0px #fff, -3px -5px 0px #fff, 4px 0px 0px #fff;
  margin-right: 10px;
}
.button2 span {
  color: #FFD740;
  text-shadow: 0px 3px 0px #000, -3px 5px 0px #000, -3px -5px 0px #000, 4px 0px 0px #000;
  margin-right: 10px;
}
@media screen and (max-width:550px) {
  .flex {
    display: block;
  }
}

#container {
  width: 100%;
  overflow: hidden;
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4em 1em;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width:1024px) {
  .inner {
    max-width: 90%;
  }
}
@media screen and (max-width:550px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  ul {
    padding-left: 20px;
  }
}
.c-red {
  color: red;
}

/*===========================
   header 
===========================*/
.header-menu {
  background-color: #FB8C00;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 30px 30px;
  color: #fff;
  padding-top: 20px;
}
.header-menu a {
  color: #fff;
  font-weight: 600;
}
.logo {
  text-align: center;
  font-size: 28px;
}
.logo a {
  text-decoration: none;
}
.logo img {
  width: 50px;
  vertical-align: bottom;
  margin-right: 10px;
}
@media screen and (max-width:768px) {
  .header-menu {
    padding: 20px 0;
  }
  header .logo {
    text-align: left;
    margin-left: 20px;
  }
  header .logo img {
    vertical-align: middle;
  }
}
@media screen and (max-width:550px) {
  .header-menu {
    padding: 25px 0;
  }
  .logo {
    font-size: 20px;
  }
  header .logo {
    margin-left: 15px;
    font-size: 18px;
  }
  .logo img {
    width: 30px;
    margin-right: 5px;
  }
}

/*---- Gnav ----------------------*/
nav {
  padding: 15px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  text-transform: uppercase;
}
nav ul li.btn {
  background-color: #FFD740;
  padding: 10px 15px;
  border-radius: 30px;
  margin-right: 10px;
}
nav ul li.btn:last-child {
  margin-right: 0;
}
nav ul li.btn a {
  padding: 0;
  color: #000;
}

#menu-btn-check {
    display: none;
}

.menu-btn p.menu {
  display: none;
}
@media screen and (max-width:768px) {
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 110;
    background-color: #fff;
    border: 1px solid #fff;
    color: #FB8C00;
  }
  .menu-btn span {
    margin-top: -15px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #FB8C00;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .menu-btn p.menu {
    font-size: 13px;
    display: block;
    margin-top: 45px;
  }
/* メニュー内 */
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 100;
    background-color: #FB8C00;
    transition: all 0.5s;/*アニメーション設定*/
    align-items: stretch;
  }
  nav {
    display: block;
  }
  nav ul {
    display: block;
    padding: 70px 10px 0;
  }
  header nav ul li {
    border-bottom: solid 1px #fff;
    list-style: none;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    color:#fff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    margin: 10px 0;
  }
  header nav ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 20px;
  }

  #menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
  }
}
/*----- メニュー外暗く -------------------*/
  #menu-btn-check:checked ~ .menu-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  #menu-btn-check:checked ~ .menu-cover .menu-bg-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background: rgba(3,3,3,.5);
    display: block;
    cursor: pointer;
    transition: all 0.4s;
  }
@media screen and (max-width:550px) {
  header nav ul li a {
    font-size: 15px;
    margin: 5px 0;
  }
}

/*===========================
   fotter 
===========================*/
#footer {
  background-color: #FB8C00;
  padding: 30px 0 400px;
  margin: 30px 0 0;
  color: #fff;
  background-image: url(../img/footer-img.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
}
#footer a {
  color: #fff;
  font-weight: 600;
}
#footer .inner {
  padding: 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-menu nav ul li a {
  padding: 15px;
}
#footer .logo {
  margin-top: 50px;
}
#footer .copyright {
  text-align: center;
  font-size: 13px;
}
@media screen and (max-width:768px) {
  .footer-menu nav ul {
    padding: 0 0 0 50px;
  }
}
@media screen and (max-width:550px) {
  .footer-menu nav ul {
    padding: 0 0 0 10px;
  }
}

/*===========================
   hero 
===========================*/
#hero {
  width: 100%;
  height: 0;
  background-image: url(../img/hero-img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 36.95%;
  position: relative;
  left: 4%;
}
#hero .inner {
  position: absolute;
  top: 50%;
  padding: 15px;
  max-width: 100%;
  width: 50%;
  transform: translateY(-50%);
}
#hero .subtitle {
  text-align: right;
}
#hero #title {
  font-size: 55px;
  line-height: 85px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
#hero #title span {
  background-color: #FB8C00;
  color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  margin: 0 1px;
}
#hero #address span {
  color: #FB8C00;
  padding: 0 10px;
  margin: 0 1px;
}
#hero .haishi {
  position: absolute;
  transform: translateY(-50%);
  right: 10%;
  margin-right: 4%;
}
#hero #address span.mail-kome,
#hero #address span.jusho {
  color: #000;
  padding: 0;
  margin: 0;
}
@media screen and (max-width:1024px) {
  #hero #title {
    font-size: 42px;
    line-height: 65px;
  }
  #hero #address {
    font-size: 14px;
  }
  #hero .haishi {
    right: 0;
  }
  #hero .haishi img {
    width: 70%;
  }
}
@media screen and (max-width:850px) {
  #hero {
    margin-top: 40px;
    padding-top: 47%;
  }
  #hero .inner {
    top: 42%;
    left: -5%;
  }
  #hero .subtitle img {
    width: 50%;
  }
  #hero #title {
    font-size: 35px;
    line-height: 58px;
  }
  #hero .haishi {
    margin-right: 0;
    text-align: center;
  }
  #hero .haishi img {
    width: 60%;
  }
}
@media screen and (max-width:550px) {
  #hero {
    margin-top: 40px;
  }
  #hero #title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: -10px;
  }
  #hero #title span {
    padding: 0 5px;
  }
  #hero #address {
    font-size: 9px;
  }
  #hero #address span.jusho {
    margin-left: 4.5em;
  }
  #hero #address span.mail-kome {
    font-size: 8px;
  }
  #hero .haishi {
    margin-right: 35px;
    text-align: right;
  }
  #hero .haishi img {
    width: 30%;
  }
}
@media screen and (max-width:480px) {
  #hero #address {
    text-align: left;
  }
}

/*===========================
   area01　7つの大罪 
===========================*/
#area01 {
  background-color: #FFD740;
  border-radius: 30px;
  width: 100%;
  padding-bottom: 30px;
}
#area01 h1 {
  background: linear-gradient(transparent 60%, #FDFFCF 70%);
  display: inline;
  font-size: 28px;
  font-weight: 800;
}
#area01 h1 span {
  font-size: 36px;
}
#area01 .lead {
  border: 2px solid #000;
  border-radius: 20px;
  padding: 70px 70px 40px;
  margin: 130px auto 30px;
  position: relative;
}
div.title-img {
  position: absolute;
  width: 100%;
  text-align: center;
  background-image: url(../img/title-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 130px;
  background-position: center;
}
div.title-img div {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #008837;
  font-size: 30px;
  width: 100%;
}
#area01 .lead div.title-img {
  margin-left: -70px;
  transform: translateY(-100%);
}
div.title-img div span {
  font-size: 42px;
}
@media screen and (max-width:550px) {
  #area01 .lead {
    padding-left: 25px;
    padding-right: 25px;
  }
  #area01 .lead div.title-img {
    margin-left: -25px;
  }
}
#area01 .manga-box {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  counter-reset: number 0;
}
.box-child {
  width: 32%;
}
.box-child:nth-of-type(n+1) {
  margin-top:20px;
}
.box-child::before {
  counter-increment: number 1;
  content: counter(number) " ";
  background-color: #FB8C00;
  border-radius: 10px;
  position: absolute;
  transform: translate(-50%, 0);
  padding: 5px 15px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
.box-child span {
  font-size: small;
  font-weight: 600;
  text-align: center;
  display: block;
}
.box-child:last-child {
  width: 65%;
  font-size: 40px;
  text-align: center;
  line-height: 60px;
}
.box-child:last-child span {
  font-weight: 800;
  text-align: initial;
  display: initial;
  font-size: 40px;
  color: #fff;
  text-shadow    : 
       2px  2px 1px #000,
      -2px  2px 1px #000,
       2px -2px 1px #000,
      -2px -2px 1px #000,
       2px  0px 1px #000,
       0px  2px 1px #000,
      -2px  0px 1px #000,
       0px -2px 1px #000;
}
.box-child:last-child span:nth-of-type(1) {
  font-size: 60px;
}
.box-child:last-child::before {
  content: none;
}
@media screen and (max-width:550px) {
  .box-child,
  .box-child:last-child {
    width: 100%;
  }
  .box-child:last-child {
    font-size: 32px;
  }
}
#area01 .pamphlet-area {
  max-width: 90%;
  width: 100%;
  background-color: #FDFFCF;
  border-radius: 30px;
  padding: 30px 0;
  margin: 0 auto;
}
#area01 .pamphlet-area .flex {
  align-items: center;
}
#area01 .pamphlet-area div div:nth-of-type(1) {
  text-align: center;
  margin: 0 auto;
}
#area01 .pamphlet-area div div:nth-of-type(1) img {
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px;
}
#area01 .pamphlet-area .button {
  margin: 20px 0;
}
@media screen and (max-width:850px) {
  #area01 .pamphlet-area .flex {
    display: block;
  }
  #area01 .pamphlet-area div div:nth-of-type(2) {
    margin: 0 auto;
    max-width: 70%;
    width: 100%;
  }
  #area01 .pamphlet-area .button {
    margin: 20px auto;
  }
}
@media screen and (max-width:550px) {
  #area01 .pamphlet-area div div:nth-of-type(2) {
    max-width: 90%;
  }
}
/* 加入案内・QA */
div.mw50 {
  max-width: 50%;
  width: 100%;
}
div.title-img-flex {
  position: relative;
  height: 145px;
}
div.title-img-flex div {
  font-size: 27px;
  line-height: 35px;
}
.mw50 p {
  display: table;
  margin: 20px auto;
}
@media screen and (max-width:768px) {
  div.mw50 {
    max-width: 100%;
  }
}

/*===========================
   area02　TOPICS 
===========================*/
#area02 h2 {
  font-size: 55px;
  line-height: 45px;
}
#area02 h2 span.subtitle {
  color: #FB8C00;
  font-size: 16px;
}
#area02 .tabbox {
  border: 3px solid #FB8C00;
  border-radius: 30px;
}
#area02 .tab {
  padding: 0;
  margin: 0;
}
#area02 .tab li {
  list-style: none;
  width: 20%;
}
#area02 .tab li img {
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
}
/*tabの形状*/
.tab {
	display: flex;
	flex-wrap: wrap;
}
.tab li a {
	display: block;
	margin: 0 2px;
	padding: 15px 20px;
  color: #000;
}
.tab li:nth-of-type(1) a {
	background: #FB8C00;
  border-radius: 20px 0 0 0;
}
.tab li:nth-of-type(2) a {
	background: #FF9D33;
  padding: 13px 20px;
}
.tab li:nth-of-type(3) a {
	background: #FFA852;
}
.tab li:nth-of-type(4) a {
	background: #FFB471;
}
.tab li:nth-of-type(5) a {
	background: #FFC28F;
  border-radius: 0 20px 0 0;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
	background: #FB8C00;
}

/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 1s;
    animation-fill-mode: forwards;
    border-radius: 30px;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media screen and (max-width:768px) {
  #area02 .tab li {
    width: 50%;
  }
  #area02 .tab li:nth-of-type(1) {
    width: 100%;
  }
  .tab li:nth-of-type(1) a {
    border-radius: 20px 20px 0 0;
  }
  .tab li:nth-of-type(2) a {
    padding: 14px 15px;
  }
  .tab li:nth-of-type(5) a {
    border-radius: 0;
    padding: 14px 15px;
  }
}
@media screen and (max-width:550px) {
  .tab li:nth-of-type(2) a {
    padding: 14px 5px;
  }
}

/*===========================
   area03　会報・写真 
===========================*/
#area03 {
  background-color: #FB8C00;
  border-radius: 0 30px 0 0;
  max-width: 95%;
  width: 100%;
  position: relative;
  z-index: 1;
}
#area03 .mw50 .img {
  display: table;
  margin: 20px auto;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 10px;
}
#area03 .mw50 img {
  border-radius: 10px;
}
#area03 .mw50 p {
  color: #fff;
}

/*===========================
   area04　バナー広告 
===========================*/
#area04 {
  background-color: #FDFFCF;
  width: 100%;
  position: relative;
  top: -150px;
  padding: 200px 0 80px;
}
.bg-orange {
  max-width: 700px;
  width: 100%;
  background-color: #FFD740;
  border-radius: 30px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  padding: 0 50px;
}
#area04 .bg-orange a {
  margin-left: 30px;
  padding: 10px 0;
  position: relative;
}
#area04 .bg-orange a::before {
  content: "";
  background-color: #FB8C00;
  bottom: 0;
  right: 0;
  position: absolute;
  padding: 15px;
  border-radius: 100%;
}
#area04 .bg-orange a::after {
  /*font-family: "FontAwesome";
  content: "\f0da";*/
  content: "▶";
  bottom: 0;
  right: 0;
  position: absolute;
  color: #FB8C00;
  text-shadow: 0px 2px 0px #fff, -2px 3.5px 0px #fff, -2px -3.5px 0px #fff, 3px 0px 0px #fff;
  font-size: 13px;
  padding: 3px 7px;
}
#area04 .bg-orange a:last-child:hover {
  opacity: 1;
}
#area04 .bg-orange a:last-child::before ,
#area04 .bg-orange a:last-child::after {
  content: none;
}
/*#area04 .bg-orange a:nth-of-type(1) {
  margin-left: 0;
  width: 53%;
}*/
/*#area04 .bg-orange a:nth-of-type(3) {
  margin-left: 0;
}
#area04 .bg-orange a:nth-of-type(6) {
  margin-left: 0;
}*/
#area04 .bg-orange img {
  width: 180px;
}
#area04 .bg-orange a:nth-of-type(1) img {
  width: 390px;
}
@media screen and (max-width:768px) {
  .bg-orange {
    max-width: 65%;
  }
}
@media screen and (max-width:480px) {
  .bg-orange {
    max-width: 90%;
    padding: 0;
  }
  #area04 .bg-orange a {
    margin-left: 0;
  }
  #area04 .bg-orange a:nth-of-type(1) img {
    width: 100%;
    max-width: 100%;
  }
  #area04 .bg-orange img {
    max-width: 60%;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    display: block;
  }
}

font {
  font-size: 16px;
}

.floar-left {
  float: left;
}
.floar-right {
  float: right;
}
.clear {
  clear: both;
}
@media screen and (max-width:550px) {
  .floar-left,
  .floar-right {
    float: initial;
  }
  img.floar-left,
  img.floar-right {
    margin: auto;
    display: block;
  }
}


/*===========================
   下層ページ
===========================*/

/* 会報 */
.k-backnumber {
  margin-top: -20px;
}
.k-backnumber a {
  border: 2px solid #ffe0aa;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 5px;
  display: inline-block;
}
.k-backnumber a:first-child:hover {
  opacity: 1;
}

/* 消費税Q&A */
#qa-index {
  position: relative;
  margin: 5em auto;
  padding: 0.5em 1em;
  border: solid 2px #ffdf5e;
  max-width: 80%;
  width: 100%;
}
#qa-index .title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #ffdf5e;
  color: #000;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}
#qa-index li {
  list-style-type: none;
  margin: 5px 0;
}
#qa-index li a {
  color: #000;
}
/*.qa::after {
  content: "";
  display: block;
  border-bottom: 1px solid #494949;
  margin: 30px auto 50px;
}
.qa .flex {
  display: flex;
  flex-wrap: initial;
  margin: 30px 0;
}
.qa-q span,
.qa-a span {
  color: #fff;
  padding: 15px;
  border-radius: 15px;
  margin-right: 10px;
}
.qa-q span {
  background-color: #72bbff;
}
.qa-a span {
  background-color: #ff7575;
}
.qa .pagetop {
  text-align: right;
  margin: 10px 0;
}
.qa .pagetop a {
  color: #008837;
}
.qa img {
  margin: 20px auto;
  text-align: center;
  display: block;
}*/
.qa-talk div {
  display: flex;
}
.qa-talk div span {
  font-weight: 600;
  width: 15%;
}
.qa-talk div p.text {
  width: 90%;
  margin: 0;
}
.qa .text-box {
  border: 2px solid #494949;
  padding: 30px;
  font-weight: 600;
  margin: 30px 0;
  display: inline-block;
}

@media screen and (max-width:550px) {
  #qa-index {
    max-width: 90%;
  }
  #qa-index ul {
    padding-left: 0;
  }
  .qa-talk div {
    display: block;
  }
  .qa-talk div span {
    display: block;
    margin-top: 20px;
    width: 100%;
  }
}

/* 署名用紙・宣伝物 */
.senden {
  width: 22%;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.senden .item {
  flex-grow: 1;
  margin: auto;
}
.flex.date {
  text-align: left;
  font-weight: initial;
}
.flex.date .date-item {
  margin-right: 1em;
  width: 15%;
}
.flex.date div:nth-of-type(2) {
  width: 80%;
}
.senden.no-btn {
  display: initial;
  text-align: center;
}
.senden.no-btn .item:nth-of-type(2) {
  text-align: left;
}
@media screen and (max-width:768px) {
  .senden {
    width: 50%;
    margin: 30px 0;
  }
  .flex.date .date-item,
  .flex.date div:nth-of-type(2) {
    width: 100%;
  }
}
@media screen and (max-width:550px) {
  .senden {
    width: 100%;
  }
}

/* お問い合わせ */
form#otoiawase table {
  width: 100%;
  display: block;
}
form#otoiawase table td input[type="Text"],
form#otoiawase table td textarea  {
  width: 100%;
}
@media screen and (max-width:550px) {
  form#otoiawase table td {
    width: 100%;
    display: block;
  }
}