@charset "UTF-8";

/*--------------------------------------------------------
1、サイト全体の背景設定
------------------------------------------------------*/

#container {
  background-color: #fff;
}

/*--------------------------------------------------------
2、サイト全体の共通設定
-------------------------------------------------------*/

body {
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

* html body {
  background-image: none;
}

/*●リンク文字*/
a {
  /* text-decoration: underline; */
}

a:link,
a:visited {
  color: #ff7f7f;
}

a:hover,
a:active {
  color: #ffbf7f;
}

a.move:hover {
  position: relative;
  left: 1px;
  top: 1px;
}

a.opacity:hover {
  opacity: 0.7;
}

.header a:link,
.header a:visited {
  color: #17184b;
  font-size: 1.3em;
  /* text-align: center; */
}

.header a:hover,
.header a:active {
  color: rgb(255, 102, 0);
}

/*--------------------------------------------------------
3、エリアの設定
--------------------------------------------------------*/

#container {
  position: relative;
  padding-top: 5px;
}

/*--------------------------------------------------------
トップ
--------------------------------------------------------*/
#top {
  position: absolute;
  top: 5px;
  color: #999;
  font-size: 1.1em;
}

#top-in {
  position: relative;
  padding: 3px 0;
}

#top-menu {
  text-align: right;
}

#top-menu li {
  display: inline;
  margin-left: 1em;
  list-style: none;
}

#top-menu li a {
  padding-left: 25px;
  background: url(../images/icon/icon-arrow06.png) left center no-repeat;
}

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

#header {
  background-color: #fff;
  font-size: 14px;
}

#header-in {
  padding: 0.3em 0 0.5em 0;
}

/*●ヘッダーロゴ（メインタイトル）*/
#header #header-title {
  float: left;
  width: 52%;
  /*ロゴ（メインタイトル）下の<h1>の1行の幅はこちらのwidthの値を変更*/
  margin-top: 10px;
}

#header .header-logo {
  margin-bottom: 0.1em;
  font-size: 2.5em;
  width: 55%;
}

/*●ヘッダーロゴテキスト*/
.header-logo a {
  text-decoration: none;
}

.header-logo a:link,
.header-logo a:visited {
  color: #999;
}

.header-logo a:hover,
.header-logo a:active {
  color: #9cc;
}

/*●ヘッダーテキスト・右上の文章*/
#header-in #header-text {
  float: right;
  width: 47%;
  /*1行の幅はwidthの値を変更*/
  line-height: 1.6;
  margin-top: 5px;
  font-weight: bold;
}

#header h1 {
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  #header h1 {
    margin-top: 10px;
  }
}

.header-items {
  display: flex;
  justify-content: flex-end;
}

.header-items item {
  width: 30%;
}

.header-items item-img {
  padding: 0 2px;
}

.contents-wrap-header-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1em 0;
}

.contents-box-header-box {
  margin-bottom: 0;
  padding: 0;
  width: 49%;
}

.contents-box-header-box img {
  display: block;
  margin-bottom: 0;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
  .contents-wrap-header-box {
    flex-direction: row;
    gap: 1em;
    width: 80%;
    margin: 1em auto;
  }

  .contents-box-header-box {
    width: 47%;
  }
}

.contents-wrap-header-textbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contents-box-header-textbox {
  margin-bottom: 0;
  padding: 0;
  width: 75%;
  /* background-color: #f0f0f0; */
  flex-basis: auto;
}

.contents-box-header-textbox img {
  display: block;
  margin-bottom: 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap-header-textbox {
  }

  .contents-box-header-textbox {
    width: 62%;
  }
}

/*--------------------------------------------------------
グローバルナビ
--------------------------------------------------------*/

.global-nav {
  padding: 0;
  background: url(../images/common/bg-menu.png) center bottom repeat-x #ffeaea;
  border-top: 2px solid #ffd6d6;
  /*メニュー上のラインの設定*/
  border-bottom: 2px solid #ffd6d6;
  /* width: 1100px; */
  margin: 5px auto 10px;
}

/*Retina（高解像度）ディスプレイ用*/
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .global-nav {
    background: url(../images/common/bg-white@2x.jpg) #eee;
    -webkit-background-size: 180px 140px;
    background-size: 180px 140px;
  }
}

@media only screen and (max-width: 750px) {
  .global-nav {
    width: 100%;
  }
}

/*グローバルナビの開閉用ボタン*/
.global-nav-panel {
  display: none;
  font-size: 12px;
}

.global-nav-panel span {
  display: block;
  min-height: 20px;
  line-height: 20px;
}

.icon-gn-menu {
  padding-left: 25px;
  background: url(../images/icon/icon-gn-menu.png) left center no-repeat;
}

.icon-gn-close {
  padding-left: 25px;
  background: url(../images/icon/icon-gn-close.png) left center no-repeat;
}

/*Retina（高解像度）ディスプレイ用*/
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon-gn-menu {
    background: url(../images/icon/icon-gn-menu@2x.png) left center no-repeat;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
  }

  .icon-gn-close {
    background: url(../images/icon/icon-gn-close@2x.png) left center no-repeat;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
  }
}

.global-nav .show-menu,
.global-nav .show-menu li ul {
  display: block !important;
}

.global-nav-in {
  width: 1100px;
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .global-nav-in {
    width: 100%;
    margin: 0 auto;
  }
}

.global-nav-in ul {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  /*メニューの幅を均等に*/
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .global-nav-in ul {
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    /*メニューの幅を均等に*/
    background: #fde9e8;
  }
}

.global-nav-in li {
  display: table-cell;
  list-style: none;
  position: relative;
  vertical-align: middle;
  margin: 0.5em 0;
  /* background: url(../images/common/bg-white.jpg) #eee; */
  text-align: center;
  font-size: 1.3em;
}

@media only screen and (max-width: 750px) {
  .global-nav-in li {
    display: table-cell;
    list-style: none;
    position: relative;
    vertical-align: middle;
    margin: 0;
    /* background: url(../images/common/bg-white.jpg) #eee; */
    text-align: center;
    font-size: 1.3em;
  }
}

/*Retina（高解像度）ディスプレイ用*/
@media screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .global-nav-in li {
    background: url(../images/common/bg-white@2x.jpg) #fde9e8;
    /* -webkit-background-size: 180px 140px; */
    /* background-size: 180px 140px; */
    /* width: 20%; */
  }

  li.odd {
  }
}

.global-nav-in li a {
  display: block;
  min-height: 1.5em;
  /*メニュー毎に高さが変わるときに調整*/
  padding: 0.4em 0.7em;
  /*画像をメニューにする場合は値を0に*/
  color: #000;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  .global-nav-in li a {
    display: block;
    min-height: 1.5em;
    /*メニュー毎に高さが変わるときに調整*/
    padding: 0.2em 0.2em;
    /*画像をメニューにする場合は値を0に*/
    color: #000;
    text-decoration: none;
  }
}

.global-nav-in li a .f08em {
  color: #aaa;
}

.global-nav-in li:hover,
.global-nav-in li:active,
.global-nav-in li:focus {
  background: #fae59e;
  background: -moz-linear-gradient(#fcf1da 0%, #fae59e 75%);
  background: -webkit-linear-gradient(#fcf1da 0%, #fae59e 75%);
  background: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fcf1da),
    color-stop(0.75, #fae59e)
  );
  background: -o-linear-gradient(#fcf1da 0%, #fae59e 75%);
  background: linear-gradient(#fcf1da 0%, #fae59e 75%);
  color: #333;
}

.global-nav-in li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

@media only screen and (max-width: 750px) {
  .global-nav-in li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 280%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
}

/*ドロップダウンメニューのデザイン*/
.global-nav li ul li {
  display: list-item;
  width: 100%;
  margin: 0;
  padding: 0;
  border-right: none;
  white-space: normal;
  font-size: 0.95em;
}

.global-nav li ul li a {
  display: block;
  padding: 0.8em 0;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #333;
}

.global-nav li ul li a:hover {
  background: #fcf1da;
}

.global-nav-in li ul ul {
  top: 0;
  left: 100%;
  border-top: none;
}

.global-nav-in li ul ul li a {
  background: #000;
}

.fixed {
  position: fixed;
  top: 16px;
  left: 50%;
  /* margin: 0 10%; */
  /* width: 80%; */
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 750px) {
  .fixed {
    width: 100%;
    margin: 0;
    top: 31px;
  }
}

/*--------------------------------------------------------
コンテンツ全体
--------------------------------------------------------*/

#main-in {
}

div#main-in {
}

/*●メイン画像*/
#main-image {
  padding-top: 0.5em;
}

#main-image-in {
  position: relative;
  /* padding-bottom: 1.5em; */
}

#main-image img {
  width: 100%;
  height: auto;
}

#main-image .catch-copy {
  position: absolute;
  top: 1em;
  left: 1em;
  color: #666;
  font-size: 3em;
  text-shadow: #fff 1px 1px 3px;
}

/*●パン屑ナビ*/
#breadcrumbs {
  clear: both;
  margin: 5px 0;
  font-size: 1.2em;
}

@media only screen and (max-width: 750px) {
  #breadcrumbs {
    clear: both;
    margin: 15px 0 -5px;
    font-size: 1.2em;
  }
}

#breadcrumbs li {
  display: inline-flex;
  margin-right: 0.5em;
  line-height: 0.5;
  text-align: right;
  list-style: none;
  padding-bottom: 10px;
}

#breadcrumbs li a {
  padding-right: 15px;
  background: url(../images/icon/icon-brc.gif) center right no-repeat;
}

/*--------------------------------------------------------
メインコンテンツ（本文）
--------------------------------------------------------*/

#main-contents {
  font-size: 1.5em;
}

#main-contents .contents {
  /* margin: .5em; */
  /* padding: 0 5px; */
}

/*●H2タグ*/
#main-contents h2 {
  margin: 40px 0 10px;
  padding: 10px 0 8px 7px;
  /* border-left: 8px solid #B4B5B5; */
  border-bottom: 4px solid #abaeb0;
  background-color: #e5e5e5;
  background: #e5e5e5;
  font-weight: bold;
  font-size: 1.2em;
}

#main-contents h2 a:link,
#main-contents h2 a:visited {
  color: #fff;
}

#main-contents h2 a:hover,
#main-contents h2 a:active {
  color: #699;
}

#main-contents h2.img-title {
  margin: 0 0 1.5em;
  padding: 0;
  border: 0;
  background: none;
}

#main-contents h2.img-title:after {
  position: static;
  bottom: auto;
  left: auto;
  z-index: auto;
  margin-left: 0;
  border: 0;
  content: "";
}

h2.gra {
  position: relative;
  padding: 10px 0 0 !important;
  background: #fff !important;
  border-bottom: none !important;
}

h2.gra:after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 9px;
  background: -webkit-linear-gradient(to right, rgb(230, 90, 90), transparent);
  background: linear-gradient(to right, rgb(230, 90, 90), transparent);
}

/*●H3タグ*/
#main-contents h3 {
  margin: 30px 0 10px;
  padding: 10px 0 5px 0;
  /* border-left: 4px solid #B4B5B5; */
  border-bottom: 2px solid #636466;
  font-size: 1.2em;
  font-weight: bold;
  /* background-color: #EEEFEF; */
}

h3.gra {
  margin: 10px 0 !important;
  padding: 10px 0 5px 0;
  border-bottom: 2px solid #636466;
  font-size: 1.2em;
  font-weight: bold;
}

#main-contents h3.mold {
  margin: 0 0 10px;
  padding: 10px 0 5px 0;
  /* border-left: 4px solid #B4B5B5; */
  border-bottom: 2px solid #249cae;
  font-size: 1.2em;
  font-weight: bold;
  /* background-color: #EEEFEF; */
  color: #249cae;
}

#main-contents h3.mold2 {
  margin: 0 0 10px;
  padding: 10px 0 5px 0;
}

#main-contents h3.question {
  margin: 20px 0 10px;
  padding: 10px 0 5px 0;
  /* border-left: 4px solid #B4B5B5; */
  border-bottom: 2px solid #636466;
  font-size: 1.2em;
  font-weight: bold;
  color: #29908c;
  /* background-color: #EEEFEF; */
}

#main-contents h3 a:link,
#main-contents h3 a:visited {
  color: #666;
}

#main-contents h3 a:hover,
#main-contents h3 a:active {
  color: #699;
}

#main-contents h3.img-title {
  margin: 0 0 1.5em;
  padding: 0;
  border: 0;
  background: none;
}

/*●H4タグ*/
#main-contents h4 {
  /* margin: 0 0 1.5em; */
  padding: 0.2em 0;
  /* border: 1px solid #8e8e8e; */
  font-weight: bold;
  /* background-color: #EEEFEF; */
  font-size: 0.95em;
}

#main-contents h4 a:link,
#main-contents h4 a:visited {
  color: #666;
}

#main-contents h4 a:hover,
#main-contents h4 a:active {
  color: #699;
}

#main-contents h4.img-title {
  margin: 0 0 1.5em;
  padding: 0;
  border: 0;
  background: none;
}

/*●H5タグ*/
#main-contents h5 {
  margin: 0 0 1.5em;
  padding: 0 0.8em 0.5em;
  border-bottom: 2px solid #414141;
  font-weight: bold;
  background-color: #eeefef;
}

#main-contents h5.img-title {
  margin: 0 0 1.5em;
  padding: 0;
  border: 0;
  background: none;
}

#main-contents h5 a:link,
#main-contents h5 a:visited {
  color: #666;
}

#main-contents h5 a:hover,
#main-contents h5 a:active {
  color: #699;
}

/*●段落タグ*/
#main-contents p {
  /* margin-bottom: .2em; */
  /* letter-spacing: 0.05em; */
  text-align: justify;
  line-height: 1.6;
}

/*●リストタグ*/
#main-contents ul,
#main-contents ol {
  margin: 0 0.8em 1.5em 1.5em;
  padding: 0;
}

#main-contents li {
  margin-bottom: 0.5em;
  line-height: 1.5em;
}

/*●引用タグ*/
#main-contents q {
  margin: 0 2px;
  padding: 0 8px;
  background: #efefef;
}

#main-contents blockquote {
  overflow: auto;
  margin: 0 1em 1.5em;
  padding: 1em;
  border: 3px solid #ddd;
  background: #efefef;
  color: #444;
}

/*●テーブルタグ*/
#main-contents table {
  /* margin-bottom: 1.5em; */
  padding: 0;
  border-top: 1px solid #959595;
  border-left: 1px solid #959595;
}

/*「table」の1行目に「colspan」を利用する場合は「auto」を指定する*/
/*#main-contents table{ table-layout: auto; }*/

#main-contents th,
#main-contents td {
  padding: 10px;
  border: 1px solid #bcbec0;
  /* border-bottom: 1px solid #959595; */
}

td {
}

#main-contents th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: left;
}

/*●テーブルタグ スタイル01*/
#main-contents table.table-style01 th,
#main-contents table.table-style01 td {
  text-align: left;
  vertical-align: top;
}

/*●テーブルタグ スタイル02*/
#main-contents table.table-style02 th,
#main-contents table.table-style02 td {
  text-align: center;
  vertical-align: top;
}

#main-contents table.table-style02 th {
  background-color: #fcfbe1;
}

/*●テーブルタグ スタイル03*/
#main-contents table.table-style03 {
  position: relative;
  padding: 5px;
  border: solid 3px #95ccff;
  border-radius: 8px;
  border-collapse: collapse;
}

#main-contents table.table-style03 th,
#main-contents table.table-style03 td {
  text-align: center;
  vertical-align: top;
  background-color: #fff;
  position: relative;
  margin: 30px;
  padding: 5px;
  border: solid 3px #95ccff;
  border-radius: 8px;
}

/*●テーブルタグ cp_table*/
.cp_table *,
.cp_table *:before,
.cp_table *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.cp_table th,
.cp_table td {
  padding: 10px;
  border: 1px solid #dddddd;
  font-size: 16.5px;
  font-weight: bold;
  text-align: center;
}

.cp_table th {
  width: 30%;
  text-align: center;
  background: #f4f4f4;
  font-size: 18.15px;
  color: white;
}

@media only screen and (max-width: 480px) {
  .cp_table {
    margin: 10px 0 0 0;
  }

  .cp_table th,
  .cp_table td {
    width: 100%;
    display: block;
    border-top: none;
  }

  .cp_table tr:first-child th {
    border-top: 1px solid #dddddd;
  }
}

/*●最新情報（リストタグ）*/
#main-contents ul.news {
  margin: 0 0 3.5em;
  padding: 0;
  padding-bottom: 0;
}

#main-contents ul.news li {
  margin-bottom: 1em;
  padding: 0 1em 1em;
  border-bottom: 1px dotted #414141;
  line-height: 1.4em;
  list-style: none;
}

/*●最新情報（定義タグ）*/
#main-contents dl.news {
  margin: 0;
  margin-bottom: 3.5em;
  padding: 0;
}

#main-contents dl.news dt {
  float: left;
  width: 9em;
  margin: 0;
  padding: 0;
  padding-left: 1em;
}

/*最新情報のアイコン設定*/
#main-contents dl.news dd.cat {
  float: left;
  overflow: hidden;
  width: 6em;
  height: 1.5em;
  padding: 0.1em 0.3em 0;
  border-bottom: none;
  background: #666;
  color: #fff;
  font-size: 0.858em;
  text-align: center;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
}

#main-contents dl.news dd {
  margin: 0 0 10px 0;
  padding: 0 1em 0.8em 16.5em;
  border-bottom: 1px dotted #414141;
}

/*●最新情報2（定義タグ）*/
#main-contents dl.news02 {
  margin: 0;
  margin-bottom: 3.5em;
  padding: 0;
}

#main-contents dl.news02 dt {
  display: block;
  margin: 0 0 0.5em 0;
  padding: 0;
  padding-left: 1em;
  font-weight: bold;
}

#main-contents dl.news02 dd {
  margin: 0 0 0.5em 0;
  padding: 0 1em 0.8em 1em;
  border-bottom: 1px dotted #414141;
}

#main-contents dl.news02 dd.cat {
  margin: 0;
  padding: 0 1em 0.5em 1em;
  border: 0;
}

#main-contents dl.news02 dd.cat ul {
  margin: 0;
  padding: 0;
  zoom: 1;
}

#main-contents dl.news02 dd.cat ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

#main-contents dl.news02 dd.cat li {
  clear: none;
  overflow: hidden;
  float: left;
  height: 1.5em;
  margin-right: 0.5em;
  padding: 0.1em 0.7em 0;
  background: #333;
  color: #fff;
  font-size: 0.858em;
  text-align: center;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
}

/*カテゴリの文字数が多い場合はコメントアウトを解除*/
/*#main-contents dl.news dd.cat{
	clear: none;
	width: auto;
}

#main-contents dl.news dd{
	clear: both;
	padding: 0 1em 0.8em 1em;
}*/

#main-contents dl.news dd.cat,
#main-contents dl.news02 dd.cat {
  font-weight: bold;
}

#main-contents dl.news dd.cat.color01,
#main-contents dl.news02 dd.cat .color01 {
  background: #68d0ef;
}

#main-contents dl.news dd.cat.color02,
#main-contents dl.news02 dd.cat .color02 {
  background: #f8b551;
}

#main-contents dl.news dd.cat.color03,
#main-contents dl.news02 dd.cat .color03 {
  background: #b3d465;
}

#main-contents dl.news dd.cat.color04,
#main-contents dl.news02 dd.cat .color04 {
  background: #c490bf;
}

#main-contents dl.news dd.cat.color05,
#main-contents dl.news02 dd.cat .color05 {
  background: #ff9da6;
}

#main-contents dl.news dd.cat.color06,
#main-contents dl.news02 dd.cat .color06 {
  background: #b5b5b5;
}

/*●定義タグ スタイル01*/
#main-contents dl.dl-style01 {
  margin: 0 0 0.5em;
  padding: 0;
}

#main-contents dl.dl-style01 dt {
  float: left;
  width: 9em;
  margin: 0;
  padding: 0 0 0 1em;
}

#main-contents dl.dl-style01 dd {
  margin: 0 0 10px 0;
  padding: 0 1em 0.8em 10em;
  border-bottom: 1px dotted #414141;
}

/*●定義タグ スタイル02*/
#main-contents dl.dl-style02 {
  margin-bottom: 1.2em;
  padding: 0;
  border: 1px solid #777;
  border-top: 0;
  background-color: #f0f0f0;
}

#main-contents dl.dl-style02 dt {
  margin: 0;
  padding: 0.5em 10px;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #main-contents dl.dl-style02 dt {
    margin: 0;
    padding: 0.5em;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    font-weight: bold;
    font-size: 3.7vw;
  }
}

#main-contents dl.dl-style02 dd {
  margin: 0;
  padding: 10px;
  background-color: #fff;
  text-align: justify;
}

/*●チェックリスト（リストタグ）*/
#main-contents ul.checklist {
  margin: 0 0 1.5em;
  padding: 1em;
  padding-bottom: 0;
  border: 1px solid #414141;
}

#main-contents ul.checklist li {
  margin-bottom: 1.5em;
  padding-top: 5px;
  padding-left: 24px;
  background: url(../images/icon/icon-check01-red.png) left top no-repeat;
  list-style-type: none;
}

/*●戻る＆進むリンク*/
.link-next,
.link-back,
.link-next02,
.link-back02 {
  clear: both;
}

.link-next,
.link-next02 {
  text-align: right;
}

.link-back,
.link-back02 {
  text-align: left;
}

.link-next a {
  padding: 3px 0 3px 15px;
  background: url(../images/icon/icon-arrow_r.png) 0 7px no-repeat;
}

.link-back a {
  padding: 3px 0 3px 15px;
  background: url(../images/icon/icon-arrow_l.png) 0 7px no-repeat;
}

.link-next02 a {
  padding: 3px 0 3px 15px;
  background: url(../images/icon/icon-arrow_r-yellow.png) 0 7px no-repeat;
}

.link-back02 a {
  padding: 3px 0 3px 15px;
  background: url(../images/icon/icon-arrow_l-yellow.png) 0 7px no-repeat;
}

/*●段組み*/
.box-wrap .box-l {
  float: left;
  width: 48%;
  margin: 0 0 1.5em;
  border: 1px solid #aaa;
  /*boxの枠線の指示*/
}

.box-wrap .box-r {
  float: right;
  width: 48%;
  margin: 0 0 1.5em;
  border: 1px solid #aaa;
}

#main-contents .box-wrap .title {
  margin-bottom: 1.5em;
  background-color: #999;
  /*boxのタイトルの背景色*/
}

#main-contents .box-wrap .title p {
  margin: 0 10px;
  padding: 5px 0;
  color: #fff;
  font-weight: bold;
}

/*●ページネーション スタイル01*/
#main-contents .cont-menu01 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#main-contents .cont-menu01 ul {
  position: relative;
  left: 50%;
  float: left;
  margin-left: 10px;
}

#main-contents .cont-menu01 li {
  position: relative;
  left: -50%;
  float: left;
  margin-right: 10px;
  list-style: none;
}

#main-contents .cont-menu01 li:last-child {
  margin-right: 0;
}

#main-contents .cont-menu01 li.cur {
  padding: 3px 10px;
  border: 1px solid #ccc;
  background-color: #959595;
  color: #fff;
  font-weight: bold;
}

#main-contents .cont-menu01 li a {
  display: block;
  padding: 3px 10px;
  border: 1px solid #ccc;
}

#main-contents .cont-menu01 li a:link,
#main-contents .cont-menu01 li a:visited {
  background-color: transparent;
}

#main-contents .cont-menu01 li a:hover,
#main-contents .cont-menu01 li a:active {
  background-color: #959595;
  color: #fff;
}

#main-contents .text-field {
  width: 90%;
}

/*●ページネーション スタイル02*/
#main-contents .cont-menu02 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#main-contents .cont-menu02 ul {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

#main-contents .cont-menu02 li {
  max-width: 50%;
  list-style: none;
}

* html #main-contents .cont-menu02 li {
  white-space: nowrap;
}

/* IE6 */

#main-contents .cont-menu02 li.prev {
  float: left;
}

#main-contents .cont-menu02 li.next {
  float: right;
}

#main-contents .cont-menu02 li a {
  display: block;
  padding: 3px 10px;
  border: 1px solid #ccc;
}

#main-contents .cont-menu02 li a:link,
#main-contents .cont-menu02 li a:visited {
  background-color: transparent;
}

#main-contents .cont-menu02 li a:hover,
#main-contents .cont-menu02 li a:active {
  background-color: #959595;
  color: #fff;
}

/*●サイトマップ*/
#main-contents .sitemap li {
  list-style: none;
}

#main-contents .sitemap li a {
  display: block;
  padding: 3px 0 3px 20px;
  background: url(../images/icon/icon-arrow_r.png) 0 6px no-repeat;
}

#main-contents .sitemap ul {
  margin-top: 1em;
}

#main-contents .sitemap li li a {
  padding: 0 0 0 15px;
  border-left: none;
  background: url(../images/icon/icon-menu02.png) 0 6px no-repeat;
}

/*●お客様の声*/
#main-contents #review-text {
  margin-bottom: 1.5em;
  padding: 0 5px;
}

#main-contents #review-text p {
  margin: 5px;
  font-size: 0.9em;
}

#main-contents .review {
  /* margin-bottom: 1.0em; */
  /* padding: 0px 10px; */
  height: 100%;
  overflow: hidden;
}

#main-contents .review p {
  margin: 5px 0;
  /* font-size: 0.9em; */
}

/*●共通レイアウト*/
#main-contents .common {
  margin-bottom: 5px;
  padding: 0 8px 0 5px;
  font-size: 1em;
}

#main-contents .common p {
  margin-bottom: 0;
  padding: 0;
  font-size: 0.95em;
}

#main-contents .common img {
  padding: 2px;
}

@media screen and (max-width: 768px) {
  .common {
    text-align: center;
  }
}

/*●注文の流れ*/
#main-contents .flow {
  margin-bottom: 0.3em;
  padding: 0 10px;
  height: 100%;
  overflow: hidden;
}

#main-contents .flow p {
  font-size: 1em;
}

/*--------------------------------------------------------
サブコンテンツ / サイドバー
--------------------------------------------------------*/

#sub-contents,
#sidebar,
#sidebar-in,
#sub-contents-in {
  margin: 0;
  padding: 0;
}

* html #sub-contents,
* html #sidebar {
  overflow: hidden;
}

#sub-contents .sub-contents-btn,
#sidebar .sidebar-btn {
  display: none;
}

.sub-column {
  font-size: 1.25em;
}

.sub-column li {
  list-style: none;
}

/*●コンテンツ*/
.sub-column .contents {
  /* margin-bottom: 1.5em; */
  /* padding: 0.5em; */
  line-height: 1.6;
}

.sub-column hr {
  clear: both;
}

.sub-column h3 {
  margin: 30px 0 10px;
  padding: 10px 0 8px 7px;
  /* border-left: 8px solid #B4B5B5; */
  border-bottom: 4px solid #abaeb0;
  background-color: #e5e5e5;
  background: #e5e5e5;
  font-weight: bold;
  font-size: 1.39em;
}

@media screen and (max-width: 768px) {
  .sub-column h3 {
    margin: 5px 0 10px;
    padding: 9px 10px 5px 18px;
    /* border-left: 8px solid #B4B5B5; */
    border-bottom: 4px solid #abaeb0;
    background-color: #e5e5e5;
    background: #e5e5e5;
    font-weight: bold;
    font-size: 1.39em;
  }
}

* html .sub-column h3 {
  background: #ebeaea;
}

/* IE6 */

.sub-column .contents h3 {
  margin: 15px 0 10px;
}

/*●プロフィール*/
.sub-column .profile-img img {
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

.sub-column .profile-txt p {
  margin-bottom: 1em;
}

.col1 .sub-column .profile-img,
.col2 #sub-contents .profile-img,
.col2r #sub-contents .profile-img {
  float: left;
  padding-right: 20px;
}

/*●テーブルタグ*/
.sub-column table caption {
  font-weight: bold;
  text-align: center;
}

.sub-column table {
  width: 100%;
  margin: auto;
  padding: 0;
  border-top: 1px solid #959595;
  border-left: 1px solid #959595;
}

.sub-column table th,
.sub-column table td {
  padding: 0.5em 0.2em;
  border-right: 1px solid #959595;
  border-bottom: 1px solid #959595;
}

.sub-column table th {
  background: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

/*●カレンダー*/
div.cal_wrapper {
}

div.schedule_wrapper {
  padding: 10px 0px 0px;
  width: auto;
  border: solid 1px #ccc;
  border-radius: 5px;
  /* box-shadow: 1px 1px 3px #666; */
  margin: 10px 0;
}

div.schedule_wrapper h3 {
  padding: 0px 10px;
  font-weight: normal;
  margin: 0px;
  font-size: 12px;
  color: #666;
}

div.schedule_wrapper div.schedule_list {
  padding: 0px 10px;
  margin: 0px;
}

div.schedule_wrapper div.schedule_list ol {
  padding: 0px;
  margin: 5px auto;
  border-top: solid 1px #ccc;
}

div.schedule_wrapper div.schedule_list ol li {
  padding: 5px 10px 0px 5px;
  font-size: 12px;
  line-height: 1.5em;
}

div.schedule_wrapper div.schedule_list ol li:hover {
  text-decoration: underline;
}

div.cal_wrapper table.cal tr th p {
  float: left;
  padding: 5px;
  margin: 0px;
  color: #666;
  font-size: 12px;
}

div.cal_wrapper table.cal tr th div.cal_ui {
  float: right;
}

div.cal_wrapper table.cal tr th div.cal_ui input {
  border: solid 1px #ccc;
  background-color: #fff;
  font-size: 12px;
  margin: 0px 1px;
  padding: 1px 5px;
  border-radius: 3px;
}

div.cal_wrapper table.cal tr td {
  border-top: solid 1px #eee;
}

div.cal_wrapper table.cal tr td {
  font-size: 12px;
  text-align: center;
  padding: 2px;
}

div.cal_wrapper table.cal tr.headline td {
  padding: 3px 0px;
  color: #666;
}

div.cal_wrapper table.cal tr.headline {
  background-color: #eee;
}

div.cal_wrapper table.cal tr td div {
  position: relative;
  padding: 1px 3px;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
}

div.cal_wrapper table.cal tr td div span {
  display: none;
  position: absolute;
  top: 10px;
  left: 0px;
  width: 130px;
  border: solid 1px #eee;
  background-color: #fff;
  text-align: left;
  padding: 3px;
  z-index: 10;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  box-shadow: 1px 1px 3px #666;
}

/* 以下、クラス指定するときのアレ */

div.cal_wrapper table.cal tr td div.Sat {
  color: #00f;
}

div.cal_wrapper table.cal tr td div.Sun {
  color: #f00;
}

div.cal_wrapper table.cal tr td div.Today {
  font-weight: bolder;
}

div.cal_wrapper table.cal tr td div.Deli {
  background-color: #efe;
}

div.cal_wrapper table.cal tr td div.Holyday {
  font-weight: bolder;
  color: #f00;
  background-color: #fee;
}

div.cal_wrapper table.cal tr td div.Birthday {
  font-weight: bolder;
  background-color: #eef;
  color: #090;
  border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.backward {
  color: #ccc;
  font-weight: normal;
  background-color: #fff;
  border-radius: 3px;
}

div.cal_wrapper table.cal tr td div.pointer {
  cursor: pointer;
}

div.cal_wrapper table.cal tr td div.pointer:hover {
  background-color: #eee;
}

/*●お問い合わせ*/
.sub-column .contact .icon-contact {
  float: left;
  padding: 0 10px 10px 0;
}

.sub-column .contact .text-contact {
  overflow: hidden;
}

.sub-column .contact {
  margin: 0;
}

/*●サイドメニュー*/
.sub-column .side-menu {
  margin: 0;
}

.sub-column .side-menu li {
  list-style: none;
  background-color: #f0efea;
  margin-bottom: 3px;
  padding-left: 10px;
  border-radius: 8px;
  border-bottom: solid 1px #b4b5b5;
}

.sub-column .side-menu li a {
  display: block;
  padding: 12px 10px 12px 20px;
  background: url(../images/icon/icon-arrow_r-yellow.png) 2px 15px no-repeat;
  color: #808080;
  font-size: 1.2em;
  text-decoration: none;
}

.sub-column .side-menu li a:active,
.sub-column .side-menu li a:hover {
  background-color: #fcfbe1;
  color: #f8b551;
}

.sub-column .side-menu ul {
  padding: 0;
  margin: 0;
}

.sub-column .side-menu ul ul {
  padding: 0;
}

.sub-column .side-menu li li {
  width: 95%;
  margin-bottom: 0;
  padding-left: 5%;
  border: 0;
}

.sub-column .side-menu li li a:link,
.sub-column .side-menu li li a:visited {
  padding: 6px 10px 6px 15px;
  border-left: none;
  background: url(../images/icon/icon-menu02.png) 2px 12px no-repeat;
}

.sub-column .side-menu li li a:active,
.sub-column .side-menu li li a:hover {
  background: url(../images/icon/icon-menu02.png) 2px 12px no-repeat #9cc;
}

/*●バナーエリア*/
.sub-column .banner {
  margin-bottom: 10px;
}

.sub-column .banner li {
  margin-bottom: 6px;
  list-style: none;
  text-align: left;
}

.col1 .sub-column .banner li,
.col2 #sub-contents .banner li,
.col2r #sub-contents .banner li {
  display: inline;
  margin-right: 8px;
}

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

#footer {
  clear: both;
  padding-top: 20px;
  padding-bottom: 10px;
  background: #23a7c1;
  /*フッター全体の背景色を指定*/
  color: #fff;
  font-size: 1.2em;
  margin-top: 20px;
}

#footer a:link,
#footer a:visited {
  color: #fff;
}

#footer a:hover,
#footer a:active {
  color: #144d56;
}

#footer h3 {
  margin: 0px 0 10px;
  padding: 10px 0 9px 10px;
  /* border-left: 8px solid #B4B5B5; */
  border-bottom: 4px solid #abaeb0;
  background-color: #e5e5e5;
  background: #e5e5e5;
  font-weight: bold;
  font-size: 1.39em;
  color: #000;
}

#footer .area01 h3 {
  border-bottom: 3px dotted #fff;
}

#footer .area02 h3 {
  border-bottom: 3px dotted #fff;
}

#footer-in li {
  list-style: none;
}

#footer .area01 {
  float: left;
  width: 33%;
  padding-bottom: 20px;
}

#footer .area02 {
  float: right;
  width: 65%;
  padding-bottom: 2px;
}

#footer .area03 {
  float: left;
  width: 100%;
}

/*●アクセス情報*/
#footer .access {
  /* padding: 0 1em; */
}

#footer .access p {
  margin-bottom: 15px;
}

p.f15em.b {
}

p.accessmap {
  padding: 0px 0 3px;
  padding-left: 25px;
  background: url(../images/icon/icon-arrow02.png) left center no-repeat;
}

/*●フッターメニュー*/
#footer .footer-menu {
  overflow: hidden;
  width: 100%;
  padding: 0;
  line-height: 1.8;
}

#footer .footer-menu ul {
  float: left;
  width: 42%;
  margin-right: 5%;
  padding: 1%;
  font-size: 1.2em;
}

#footer .footer-menu ul ul {
  float: none;
  width: auto;
  margin-top: 3px;
  margin-right: 0;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  #footer .footer-menu ul ul {
    float: none;
    width: auto;
    margin-top: 5px;
    margin-right: 0;
  }
}

.footer-menu li {
  margin-bottom: 5px;
  /* padding: 0px 0 3px; */
  /* padding-left: 25px; */
  /* background: url(../images/icon/icon-arrow02.png) left top no-repeat; */
}

@media screen and (max-width: 768px) {
  .footer-menu li {
    margin-bottom: 5px;
  }
}

.footer-menu li li {
  padding-left: 15px;
  padding-top: 0;
  /* background: url(../images/icon/icon-arrow03.png) left 5px no-repeat; */
}

/*●フッターバナー*/
#footer-banner {
  clear: both;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

#footer-banner li {
  display: inline;
  list-style: none;
}
.footer-box {
  padding: 0;
  margin: 2em 0;
  font-weight: 700;
  color: #fff;
}
.footer-box p {
  margin: 1.5em 0;
  padding: 0;
  font-size: 1.35em;
}
@media only screen and (max-width: 750px) {
  .footer-box {
    padding: 0;
    margin: 2em 0;
    font-weight: 700;
    color: #fff;
  }
  .footer-box p {
    margin: 1.5em 0;
    padding: 0;
    font-size: 1.35em;
  }
}
.contents-wrap-footer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}
.contents-box-footer-box {
  margin-bottom: 0;
  padding: 0;
  width: 31%;
  background: #fff;
  border-radius: 15px;
}
.contents-box-footer-box img {
  display: block;
  margin-bottom: 0;
  width: 100%;
  height: auto;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .contents-wrap-footer-box {
    flex-direction: column;
  }
  .contents-box-footer-box {
    width: 60%;
    margin: 0 auto;
  }
  .contents-box-footer-box img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

/*●コピーライト*/
.copyright {
  padding: 5px 0;
  background: #eaeaea;
  font-size: 1.2em;
  text-align: center;
}

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

.page-top {
  position: fixed;
  right: 0px;
  bottom: 5px;
  z-index: 99;
  /* width: 185px; */
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1;
  text-align: left;
}

* html .page-top {
  display: none;
}

.page-top a {
  display: block;
  padding: 0 8px;
  /* border: 3px solid #fff; */
  border-bottom: 0;
  text-decoration: none;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -webkit-border-top-left-radius: 30px;
  -moz-border-radius-topright: 30px;
  -moz-border-radius-topleft: 30px;
}

.page-top a:link,
.page-top a:visited {
  /* background: url(../images/common/bg-pagetop.png) 15px 21px no-repeat #B4B5B5; */
  /* color: #fff; */
}

.page-top a:hover,
.page-top a:active {
  /* background: url(../images/common/bg-pagetop.png) 15px 21px no-repeat #289DAE; */
  color: #fff;
}

.page-top2 {
  position: fixed;
  right: 70px;
  bottom: 5px;
  z-index: 99;
  width: 170px;
}

/*------------------------------------------------------------
ソーシャルボタン
-------------------------------------------------------------*/

#main-contents .sb {
  width: 100%;
  margin: 0;
  padding: 0;
}

#main-contents .sb li {
  display: inline-block;
  margin-right: 5px;
  vertical-align: top;
  list-style: none;
}

* html #main-contents .sb li {
  float: left;
  width: 130px;
  list-style: none;
}

/* IE6 */

* + html #main-contents .sb li {
  display: inline;
  list-style: none;
}

/* IE7 */

#main iframe.twitter-share-button {
  width: 100px !important;
}

/*コメントナビ*/
.navigation .alignright {
  float: right;
}

.navigation .alignleft {
  float: left;
}

.navigation:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.navigation {
  margin-bottom: 30px;
  zoom: 1;
}

.top-relative {
  position: relative;
}

.top-absolute {
  position: absolute;
  top: -6px;
  left: -30px;
}

@media screen and (max-width: 768px) {
  .top-absolute {
    position: absolute;
    top: -8px;
    left: -30px;
  }
}

.qa-list-relative {
  position: relative;
}

.qa-list-absolute {
  position: absolute;
  top: 0;
  left: 42%;
  width: 350px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.qa-list-absolute2 {
  position: absolute;
  top: 0;
  left: 42%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.largelot-relative {
  position: relative;
}

.largelot-absolute {
  position: absolute;
  top: 0;
  left: 50%;
  width: 350px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.results-relative {
  position: relative;
}

.results-absolute {
  position: absolute;
  top: 200px;
  right: 15px;
}

.first-time-customer-relative {
  position: relative;
}

.first-time-customer-absolute {
  position: absolute;
  top: 14px;
  left: 17px;
}

.link-t-a {
  position: relative;
  top: -100px;
  display: block;
}

@media screen and (max-width: 768px) {
  .link-t-a {
    position: relative;
    top: -130px;
    display: block;
  }
}

#peekobot-container {
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 12px;
  box-shadow: 2px 2px 5px hsl(0, 0%, 60%);
  padding: 1rem 1rem 2rem 1rem;
  height: var(--peekobot-height);
  position: relative;
  /* width: 100%; */
  background: lavenderblush;
}

#peekobot-inner {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  /* Hiding scrollbars is a pain. This is from: https://redstapler.co/css-hidden-scrollbar-while-scrollable-element/ */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#peekobot-inner::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

.page-top-chat {
  position: fixed;
  right: 10px;
  bottom: 70px;
  z-index: 99;
  width: auto;
}

.chat-response,
.chat-ask {
  opacity: 0;
  /* Set to activated to show */
  transform: translateY(-50%);
  /* Set to activated to move down */
  transition: all 0.3s 0.3s;
  border-radius: 25px;
  background-color: #fff;
  padding: 0.5rem 0.7rem;
  line-height: 1.4;
  color: black;
  width: 80%;
  margin-bottom: 0.5rem;
  font-size: 1.1em;
  border: 1px solid hsl(0, 0%, 0%);
}

.chat-response {
  margin-left: 26px;
  position: relative;
}

.chat-response:before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: -26px;
  top: 6px;
  background-image: url(../images/icon/aotani-logo.png);
  /* background-color: #999; */
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 100%;
}

.chat-ask {
  background-color: hsl(207, 96%, 55%);
  margin-right: 0;
  margin-left: auto;
  color: hsl(0, 0%, 100%);
}

.choices {
  opacity: 0;
  /* Set to active to show */
  transform: translateY(-50%);
  /* Set to activated to move down */
  transition: all 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
  margin-top: 0.5rem;
  margin-left: 26px;
}

.choice {
  display: inline-block;
  outline: none;
  border: 1px solid hsl(0, 0%, 0%);
  padding: 0.3rem 0.8rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.choice:disabled {
  color: hsl(0, 0%, 80%);
  border-color: hsl(0, 0%, 80%);
}

.activated {
  opacity: 1;
  transform: translateY(0);
}

.restart {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  outline: none;
  font-size: 12px;
  color: hsl(0, 0%, 50%);
  box-shadow: none;
  border: 1px solid hsl(0, 0%, 60%);
  border-radius: 1rem;
  background: hsl(0, 0%, 100%);
  padding: 0.2rem 0.5rem;
  cursor: pointer;
}

/*------------------------------------------------------------
floatの回り込みを解除
-------------------------------------------------------------*/

#top-in:after,
#header-in:after,
#global-nav-in #menu:after,
#main-in:after,
#main-and-sub:after,
.contents:after,
#main-contents dl.dl-style01:after,
.box-wrap:after,
dl.search-box:after,
#footer-in:after,
#main-contents .sb:after,
.contact:after,
#main-contents .cont-menu01:after,
#main-contents .cont-menu02:after,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

#top-in,
#header-in,
#global-nav-in #menu,
#main-in,
#main-and-sub,
.contents,
#main-contents dl.dl-style01,
.box-wrap,
dl.search-box,
#footer-in,
#main-contents .sb,
.contact,
#main-contents .cont-menu01,
#main-contents .cont-menu02,
.clearfix {
  zoom: 1;
}

.table03 {
  font-size: 1.1em;
  margin: 2px;
}

.box-review {
  padding: 10px;
  margin: 0;
  color: #000;
  /*文字色*/
  background: #fff;
  border: solid 3px #6091d3;
  /*線*/
  border-radius: 10px;
  /*角の丸み*/
}

.box-review p {
  margin: 0;
  padding: 0;
  font-size: 0.95em;
  text-align: justify;
}

.box2 {
  padding: 1em 0.5em;
  margin: 0.5em;
  color: #000;
  /*文字色*/
  background: #fff;
  border: solid 3px #6091d3;
  /*線*/
  border-radius: 10px;
  /*角の丸み*/
}

.box2 p {
  margin: 0;
  padding: 0;
}

.box-orange {
  padding: 1em 1em;
  margin: 0.5em;
  color: #000;
  /*文字色*/
  background: #fff;
  border: solid 3px #e0bd27;
  /*線*/
  border-radius: 10px;
  /*角の丸み*/
}

.box-orange p {
  margin: 0;
  padding: 0;
}

.box-pink {
  padding: 1em 1em;
  margin: 0.5em;
  color: #000;
  /*文字色*/
  background: #fff;
  border: solid 3px #f8bbd0;
  /*線*/
  border-radius: 10px;
  /*角の丸み*/
}

.box-pink p {
  margin: 0;
  padding: 0;
}

.box-thumbnail {
  padding: 1em 1em;
  margin: 0.5em;
  color: #000;
  /*文字色*/
  background: #fff;
  border: solid 3px #6091d3;
  /*線*/
  border-radius: 10px;
  /*角の丸み*/
}

.box-thumbnail p {
  margin: 0;
  padding: 0;
}

.box26 {
  position: relative;
  margin: 15px 0 10px;
  padding: 5px;
  border: solid 3px #95ccff;
  border-radius: 8px;
}

.box26 .box-title {
  position: absolute;
  display: inline-block;
  top: -18px;
  left: 10px;
  padding: 5px;
  line-height: 1;
  font-size: 1.2em;
  background: #fff;
  color: #19448e;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .box26 .box-title {
    top: -18px;
    left: 10px;
    padding: 5px;
    line-height: 1;
    font-size: 1em;
    background: #fff;
    color: #19448e;
    font-weight: bold;
  }
}

.box26 p {
  margin: 2px;
  padding: 2px;
  font-size: 1.1em;
  font-size: 0.95em;
}

.box26 small {
  font-size: 0.8em;
}

.box27 {
  position: relative;
  margin: 20px 5px;
  padding: 20px 0 5px;
  border: solid 3px #27bdde;
  border-radius: 8px;
}

.box27 .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 1.2em;
  background: #fff;
  color: #2894ad;
  font-weight: bold;
}

.box27 p {
  margin: 10px;
  padding: 5px;
  font-size: 1.1em;
  font-size: 0.95em;
}

.box27 small {
  font-size: 0.8em;
}

.box-notes {
  padding: 12px 15px 10px;
  margin: 20px 0 0px 0;
  background: #f0e4d6;
  /*背景色*/
}

.box-notes .box-title {
  font-size: 1.2em;
  /* background: #5fb3f5; */
  /* padding: 4px; */
  text-align: center;
  /* color: #FFF; */
  font-weight: bold;
  /* letter-spacing: 0.07em; */
  width: 73%;
  margin: 0 auto;
}

.box-notes p {
  margin: 0;
  padding: 5px 0 0 0;
  /* font-weight: bold; */
  text-align: justify;
}

@media only screen and (max-width: 750px) {
  .box-notes {
    padding: 12px 15px 10px;
    margin: 35px 0 35px 0;
    background: #f0e4d6;
    /*背景色*/
  }

  .box-notes .box-title {
    font-size: 1.2em;
    width: 58%;
    /* background: #5fb3f5; */
    /* padding: 4px; */
    text-align: center;
    /* color: #FFF; */
    font-weight: bold;
    /* letter-spacing: 0.05em; */
    line-height: 1.4;
    margin: 0 auto;
  }

  .box-notes p {
    margin: 0;
    padding: 6px 0 0 0;
    /* font-weight: bold; */
    text-align: justify;
  }
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.item {
  margin: 0 10px 20px 10px;
}

.price-t table td,
th {
  border: 1px solid #595959;
  border-collapse: collapse;
  text-align: center;
  border: hidden;
}

.price-t td,
th {
  padding: 3px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
}

.price-t th {
  background: #f0e6cc;
}

.even {
  /* background: #fbf8f0; */
}

.odd {
  /* background: #fefcf9; */
}

/*Q&A*/
.qa-list dt {
  display: block;
  margin-left: 5px;
  margin-bottom: 5px;
  padding: 5px 0 15px 45px;
  background: url(../images/icon/icon-q_2.png) left 3px no-repeat;
  color: #333;
  font-size: 1.25em;
  font-weight: bold;
  text-align: justify;
}

.qa-list dd {
  margin-left: 5px;
  margin-bottom: 15px;
  padding: 5px 0 15px 45px;
  background: url(../images/icon/icon-a_2.png) left 3px no-repeat;
  text-align: justify;
}

.flex-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .flex-menu {
    flex-wrap: wrap;
  }
}

.flex-item {
  text-align: center;
  padding: 5px 3px 0 3px;
  margin: 5px;
}

@media screen and (max-width: 768px) {
  .flex-item {
    padding: 5px 3px 0 3px;
    margin: 5px;
  }
}

.flex-item p {
  text-align: center;
  padding: 0;
  margin: 0;
}

.flex-menu2 {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .flex-menu2 {
    flex-wrap: wrap;
  }
}

.flex-item2 {
  text-align: center;
  padding: 0px 3px 0 3px;
  margin: 5px;
}

.flex-item2 p {
  text-align: center;
  padding: 0;
  margin: 0;
}

.box30 {
  margin: 40px 0 10px;
  background: #e8f7f4;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22); */
  padding-bottom: 1px;
}

.box30 .box-title {
  font-size: 1.2em;
  background: #23a7c1;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.box30 p {
  padding: 0px 10px 10px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .box30 p {
    font-size: 1em;
  }
}

p.ex1 {
  font-size: xx-large;
}

p.ex2 {
  font-size: x-large;
}

p.ex3 {
  font-size: large;
}

p.ex4 {
  font-size: medium;
}

p.ex5 {
  font-size: small;
}

p.ex6 {
  font-size: x-small;
}

p.ex7 {
  font-size: xx-small;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa {
  overflow-x: hidden;
  margin: 0 auto;
  color: #333333;
}

.cp_qa .cp_actab {
  padding: 20px 0;
  /* border-bottom: 1px dotted #cccccc; */
}

.cp_qa label {
  font-size: 1.2em;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0 48px;
  cursor: pointer;
}

.cp_qa .cp_actab-content {
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 40px;
  padding: 0 14px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}

.cp_qa .cp_actab input[type="checkbox"]:checked ~ .cp_actab-content {
  height: auto;
  padding: 6px;
  opacity: 1;
}

.cp_qa .cp_plus {
  font-size: 2.4em;
  line-height: 100%;
  position: absolute;
  z-index: 5;
  margin: 3px 0 0 10px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.cp_qa .cp_actab input[type="checkbox"]:checked ~ .cp_plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cp_qa .cp_actab input[type="checkbox"] {
  display: none;
}

@media screen and (max-width: 768px) {
  .cp_qa label {
    font-size: 5vw;
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 10px 0 48px;
    cursor: pointer;
  }

  .cp_qa .cp_actab-content {
    font-size: 4.3vw;
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0 40px;
    padding: 0 14px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
  }
}

/*========================
  　smartphone　bottom
  menu
  　========================*/
.mini-text {
  font-size: 10px;
}

/*文字大きさ*/

ul.bottom-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  /*高さ*/
  margin: 0;
  padding: 0;
  background-color: #23a7c1;
  /*背景色*/
  /* border-top:2px solid #808080; */
  /*バーの上の線*/
  /* border-bottom:2px solid #808080; */
  /*バーの下の線*/
  z-index: 30;
}

ul.bottom-menu li {
  float: left;
  width: 25%;
  /* background-color:#f5f5f5; */
  /*背景色*/
  list-style-type: none;
  text-align: center;
  font-size: 25px;
  /*アイコンのサイズ*/
}

.bottom-menu li a {
  display: block;
  color: brown;
  /*アイコン＆文字の色*/
  line-height: 10px;
  text-decoration: none;
}

.bottom-menu li img {
  color: #fff;
  /*アイコン＆文字の色*/
  padding-top: 5px;
  padding-bottom: 5px;
}

.bottom-menu li a:hover {
  color: #a9a9a9;
  /*マウスオーバー時の色*/
}

/* === 展開メニュー === */

ul.menu-second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

ul.menu-second-level li a {
  border-top: 1px dashed #a9a9a9;
  /*展開の枠点線*/
  font-size: 15px;
  /*展開メニューの文字サイズ*/
  line-height: 40px;
  /*文字の縦幅*/
}

.menu-second-level li a:hover {
  height: 100%;
  background: lightgrey;
  /*マウスオーバーの色*/
}

li.menu-width-max ul.menu-second-level {
  position: absolute;
  bottom: 47px;
  /*高さ*/
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
}

li.menu-width-max:hover ul.menu-second-level {
  bottom: 47px;
  /*高さ*/
  visibility: visible;
  opacity: 1;
  background-color: #f8c2d0;
}

li.menu-width-max ul.menu-second-level li {
  float: left;
  width: 100%;
  border: none;
}

/* ボタン（デザインはお好みで） */
.my_modal_btn {
  /* display: block; */
  /* width: 100%; */
  /* padding: 11px; */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
}

/* チェックボックスを非表示 */
#my_modal1 {
  display: none;
}

/* モーダル */
.my_modal_body1 {
  display: none;
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  display: none;
  background-color: #fff;
  overflow-y: auto;
  /* スマホ用スクロール */
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  /* お好みで */
  width: 90%;
  max-height: 80%;
  max-width: 600px;
}

/* モーダル内ヘッダー */
.my_modal_header {
  padding: 15px 10px;
  background-color: #23282d;
  color: #fff;
  font-weight: bold;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: center;
}

/* クローズアイコン */
.my_modal_close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.my_modal_close_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.my_modal_close_icon span::before,
.my_modal_close_icon span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84%;
  height: 16%;
  margin: -8% 0 0 -42%;
  background: #fff;
}

.my_modal_close_icon span::before {
  transform: rotate(-45deg);
}

.my_modal_close_icon span::after {
  transform: rotate(45deg);
}

/* コンテンツ表示 */
.my_modal_content {
  padding: 5px 10px;
}

/* 背景を暗くする */
.my_modal_overlay {
  display: none;
  position: fixed;
  z-index: 90000;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background-color: #111;
  opacity: 0.3;
  cursor: pointer;
}

/* チェック時オーバーレイとコンテンツを表示 */
#my_modal1:checked ~ .my_modal_body1,
#my_modal1:checked ~ .my_modal_overlay {
  display: block;
}

.media {
  background: #fff;
  /* padding: 10px; */
  overflow: hidden;
}

.media_image {
  float: left;
  margin-right: 10px;
}

.media_summary {
  overflow: hidden;
  font-size: 0.7em;
  padding: 7px 0;
}

.media2 {
  background: #fff;
  padding: 10px;
  overflow: hidden;
}

.media_image2 {
  float: left;
  margin-right: 10px;
}

.media_summary2 {
  overflow: hidden;
  font-size: 0.9em;
}

.contents-wrap {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: .5em; */
}

.contents-wrap:nth-child(odd) {
  flex-direction: row-reverse;
}

.contents-text {
  width: 65%;
  /*flex: 2;*/
}

.contents-img {
  width: 36%;
  margin: auto;
}

.contents-text h2 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.contents-img img {
  display: block;
  width: 55%;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap,
  .contents-wrap:nth-child(odd) {
    flex-direction: column;
  }

  .contents-text {
    width: 100%;
    /*flex: 1;*/
  }

  .contents-img {
    width: 80%;
    /* flex: 1; */
    /* margin: auto; */
    margin-bottom: 10px;
  }

  .contents-text {
    font-size: 0.9em;
    padding: 0.5rem;
  }

  .contents-text h2 {
    text-align: center;
  }
}

.contents-wrap01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contents-box01 {
  margin-bottom: 0;
  padding: 0 10px;
  width: 20%;
}

.contents-box01 p {
  margin: 0;
  padding: 0;
  text-align: center;
}

.contents-box01 img {
  display: block;
  margin-bottom: 0rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-box01 {
    margin-bottom: 0;
    padding: 10px;
    width: 42%;
    font-size: 0.9em;
  }
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa {
  overflow-x: hidden;
  margin: 0 auto;
  color: #333333;
}

.cp_qa .cp_actab {
  padding: 0;
  /* border-bottom: 3px solid #ABAEB0; */
  background: #e5e5e5;
  margin-bottom: 5px;
}

.cp_qa label {
  font-size: 1.3em;
  font-weight: bold;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 10px 5px 0px;
  cursor: pointer;
  color: #231f20;
  border-bottom: 3px solid #abaeb0;
}

.cp_qa .cp_actab-content {
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0 14px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
  background: #fff;
}

.cp_qa .cp_actab input[type="checkbox"]:checked ~ .cp_actab-content {
  height: auto;
  padding: 10px 0;
  opacity: 1;
  background: #fff;
}

.cp_qa .cp_plus {
  font-size: 2.4em;
  line-height: 100%;
  position: absolute;
  right: 15px;
  z-index: 5;
  margin: 6px 0 0 10px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.cp_qa .cp_actab input[type="checkbox"]:checked ~ .cp_plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cp_qa .cp_actab input[type="checkbox"] {
  display: none;
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 5px 0;
  color: #1b2538;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  /* padding: 17px 2em 15px 0; */
  cursor: pointer;
  text-indent: 1em;
  /* border-radius: 0.5em; */
  /* background: rgba(27,37,56,0.1); */
}

.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: #00838f;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  position: absolute;
  top: -10px;
  right: 0;
  content: "+";
  display: inline-block;
  width: 1.8em;
  height: 2em;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  /* border-radius: 0 0 0.5em 0.5em; */
}

.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: "A";
}

.cp_qa .cp_actab .cp_actab-content p {
  margin: 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 50em;
  /* border: 10px solid rgba(27,37,56,0.1); */
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
  color: #00838f;
  border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type="checkbox"]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.cal-relative {
  position: relative;
  top: -15px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .cal-relative {
    position: relative;
    top: -5px;
    right: 0;
  }
}

.my-parts {
  display: inline-block;
  text-decoration: none;
  width: 300px;
  max-width: 100%;
  height: auto;
  text-align: left;
}

.my-parts .my-parts-img {
  text-align: center;
}

.my-parts .my-parts-img img {
  vertical-align: bottom;
  margin: 0;
}

.my-parts .my-parts-body {
  padding: 0.4em;
}

.my-parts .my-parts-body time {
  color: #666;
  font-size: 0.875em;
}

.my-parts .my-parts-title {
  font-size: 1.2em;
  color: #333;
  margin: 0.4em 0;
}

.my-parts .my-parts-body p {
  font-size: 0.95em;
  color: #666;
  margin: 0;
}

/**************************
 タブ切り替え
***************************/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.tab-label {
  color: White;
  background-color: lightgray;
  text-align: center;
  padding: 5px 1px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  border-radius: 2px;
  position: relative;
  font-size: 12px;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* アクティブなタブ */
.tab-switch:checked + .tab-label {
  background-color: #999fad;
  /*背景色*/
}

.tab-switch:checked + .tab-label:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #999fad;
  width: 0;
  height: 0;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 0 0 0;
  opacity: 1;
  transition: 0.5s opacity;
}

/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/**************************
 タブ切り替え2
***************************/
.tab-wrap2 {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.tab-label2 {
  color: White;
  background-color: lightgray;
  text-align: center;
  padding: 5px 1px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  border-radius: 2px;
  position: relative;
  font-size: 12px;
}

.tab-label2:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content2 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* アクティブなタブ */
.tab-switch2:checked + .tab-label2 {
  background-color: #999fad;
  /*背景色*/
}

.tab-switch2:checked + .tab-label2:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #999fad;
  width: 0;
  height: 0;
}

.tab-switch2:checked + .tab-label2 + .tab-content2 {
  height: auto;
  overflow: auto;
  padding: 15px 0 0 0;
  opacity: 1;
  transition: 0.5s opacity;
}

/* ラジオボタン非表示 */
.tab-switch2 {
  display: none;
}

/**************************
 タブ切り替え3
***************************/
.tab-wrap3 {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.tab-label3 {
  color: White;
  background-color: lightgray;
  text-align: center;
  padding: 5px 1px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  border-radius: 2px;
  position: relative;
  font-size: 12px;
}

.tab-label3:not(:last-of-type) {
  margin-right: 5px;
}

.tab-content3 {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* アクティブなタブ */
.tab-switch3:checked + .tab-label3 {
  background-color: #999fad;
  /*背景色*/
}

.tab-switch2:checked + .tab-label2:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 10px solid #999fad;
  width: 0;
  height: 0;
}

.tab-switch3:checked + .tab-label3 + .tab-content3 {
  height: auto;
  overflow: auto;
  padding: 15px 0 0 0;
  opacity: 1;
  transition: 0.5s opacity;
}

/* ラジオボタン非表示 */
.tab-switch3 {
  display: none;
}

.box_acp {
  position: relative;
  margin: 2em 0;
  padding: 1em;
  border: 10px solid;
  border-image: linear-gradient(to right, #a9820f, #e0d9c2) 1;
  border-radius: 8px;
}

.box_acp .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #a9820f;
  font-weight: bold;
}

.box_acp p {
  margin: 0;
  padding: 0;
}

.contents-wrap_top_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

.contents-box_top_banner {
  /* margin-bottom: 3rem; */
  /* padding: 3rem; */
  width: 33%;
  /* background-color: #f0f0f0; */
}

.contents-box_top_banner img {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap_top_banner {
    flex-direction: column;
  }

  .contents-box_top_banner {
    width: 100%;
  }
}

.contentsflame-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0rem;
}

.contentsflame-text {
  width: 73%;
  /*flex: 2;*/
}

.contentsflame-img {
  width: 25%;
  /*flex: 1;*/
}

.contentsflame-text span {
  font-size: 1.2rem;
  font-weight: bold;
}

.contentsflame-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contentsflame-wrap,
  .contentsflame-wrap:nth-child(odd) {
    flex-direction: column;
  }

  .contentsflame-text {
    width: 97%;
    /*flex: 1;*/
  }

  .contentsflame-img {
    width: 66%;
    margin: 10px auto 0;
    /*flex: 1;*/
  }

  .contentsflame-text h2 {
    text-align: center;
  }
}

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

.contents02-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 47%;
  background-color: #fff4f9;
  margin-top: auto;
}

.contents02-box img {
  display: block;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
}

.contents02-bold {
  font-size: 1.2rem;
  font-weight: bold;
}

.contents02-box p {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contents02-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .contents02-box {
    width: 96%;
  }
}

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

.contents021-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 47%;
  background-color: #fff4f9;
  margin-top: auto;
}

.contents021-box img {
  display: block;
  flex-direction: column;
  width: 60%;
  margin: 0 auto;
}

.contents021-bold {
  font-size: 1.2rem;
  font-weight: bold;
}

.contents021-box p {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contents021-wrap {
    flex-direction: column;
  }

  .contents021-box {
    width: 96%;
  }
}

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

.contents03-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 47%;
  background-color: #fff4f9;
  margin-top: auto;
}

.contents03-box img {
  display: block;
  flex-direction: column;
  margin: 0 auto;
}

.contents03-bold {
  font-size: 1.2rem;
  font-weight: bold;
}

.contents03-box p {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contents03-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .contents03-box {
    width: 96%;
  }
}

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

.contents04-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  width: 22%;
  background-color: #fff4f9;
  margin-top: auto;
}

.contents04-box img {
  display: block;
  flex-direction: column;
  /* width: 100%; */
  margin: 10px auto;
}

.contents04-bold {
  font-weight: bold;
  text-align: center;
}

.contents04-bold02 {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .contents04-wrap {
    flex-direction: column;
    gap: 20px !important;
  }

  .contents04-box {
    width: 96%;
  }

  .contents04-box img {
    width: 60%;
  }

  .contents04-bold02 {
    font-weight: bold;
    text-align: center;
  }
}

.box_holiday {
  position: relative;
  margin: 2em 0;
  padding: 1em 1em;
  border: solid 5px #2a9eb6;
  border-radius: 8px;
}

.box_holiday .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #fff;
  color: #2a9eb6;
  font-weight: bold;
}

.box_holiday .box-date {
  /* position: absolute; */
  /* display: inline-block; */
  top: 45px;
  left: 32%;
  padding: 5px 0;
  line-height: 1;
  font-size: 25px;
  background: #fff;
  color: #f00;
  font-weight: bold;
  text-align: center;
}

.box_holiday .box-date2 {
  /* position: absolute; */
  /* display: inline-block; */
  /* top: 80px; */
  /* left: 34%; */
  padding: 5px 0;
  line-height: 1;
  font-size: 17px;
  background: #fff;
  font-weight: bold;
  text-align: center;
}

.box_holiday p {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .box_holiday {
    position: relative;
    margin: 2em 0;
    padding: 1em 1em;
    border: solid 5px #2a9eb6;
    border-radius: 8px;
  }

  .box_holiday .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #fff;
    color: #2a9eb6;
    font-weight: bold;
  }

  .box_holiday .box-date {
    /* position: absolute; */
    /* display: inline-block; */
    /* top: 68px; */
    /* left: 10%; */
    padding: 5px 0;
    line-height: 1;
    font-size: 5vw;
    background: #fff;
    color: #f00;
    font-weight: bold;
    text-align: center;
  }

  .box_holiday .box-date2 {
    /* position: absolute; */
    /* display: inline-block; */
    top: 102px;
    left: 8%;
    padding: 5px 0;
    line-height: 1;
    font-size: 4.2vw;
    background: #fff;
    font-weight: bold;
    text-align: center;
  }

  .box_holiday p {
    margin: 0;
    padding: 5px 0 0 0;
  }
}

.contents-wrap-botton {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.contents-box-botton {
  /* margin-bottom: 3rem; */
  /* padding: 3rem; */
  width: 32%;
  /* background-color: #f0f0f0; */
}

.contents-box-botton img {
  display: block;
  /* margin-bottom: 1rem; */
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap-botton {
    flex-direction: column;
  }

  .contents-box-botton img {
    display: block;
    margin: 0 auto 1rem;
    width: 75%;
    height: auto;
  }

  .contents-box-botton {
    width: 100%;
  }
}

.contents-wrap-botton2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.contents-box-botton2 {
  /* margin-bottom: 3rem; */
  /* padding: 3rem; */
  width: 49%;
  /* background-color: #f0f0f0; */
}

.contents-box-botton2 img {
  display: block;
  margin: 0 auto;
  width: 75%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap-botton2 {
    flex-direction: column;
  }

  .contents-box-botton2 img {
    display: block;
    margin: 0 auto 1rem;
    width: 75%;
    height: auto;
  }

  .contents-box-botton2 {
    width: 100%;
  }
}

.my-parts_topicks {
  display: inline-block;
  max-width: 100%;
  border: 1px solid #f44336;
  border-radius: 0px;
  padding: 0 0.8em 0.8em;
  overflow: hidden;
  text-align: left;
  margin: 10px 0 0 0;
}

.my-parts_topicks .my-parts_topicks-title {
  padding: 0.4em 0.8em;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 -0.8em 0.4em -0.8em;
  background: #f44336;
  color: #fff;
}

.my-parts_topicks > :last-child {
  margin-bottom: 0;
}

.contents-wrap_topicks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contents-box_topicks {
  margin: 10px 0;
  /* padding: 3rem; */
  width: 32%;
  /* background-color: #f0f0f0; */
}

.contents-box_topicks img {
  display: block;
  /* margin-bottom: 3rem; */
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap_topicks {
    flex-direction: column;
  }

  .contents-box_topicks {
    width: 100%;
  }

  .contents-box_topicks img {
    display: block;
    margin: 0 auto;
    width: 70%;
    height: auto;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

.tb01 {
  margin-top: 30px;
}

.tb01 th,
.tb01 td {
  padding: 10px;
  border: solid 1px #ccc;
  text-align: justify;
  box-sizing: border-box;
  font-size: 15px !important;
}

.tb01 th {
  background: #f4f4f4;
  width: 23%;
}

@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }

  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .tb01 tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}

.box-table-top {
  background: #eee;
  font-weight: bold;
  font-size: 15px;
  padding: 10px;
  border-top: 1px solid rgb(199, 199, 199);
  border-left: 1px solid rgb(199, 199, 199);
  border-right: 1px solid rgb(199, 199, 199);
}

.contents-wrap_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 15px auto;
  gap: 20px;
  align-items: center;
}

.contents-box_sns {
  margin-bottom: 0rem;
  padding: 0rem;
  width: 15%;
}

.contents-box_sns img {
  display: block;
  margin-bottom: 0rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .contents-wrap_sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin: 15px auto;
    gap: 20px;
    align-items: center;
  }

  .contents-box_sns {
    margin-bottom: 0rem;
    padding: 0rem;
    width: 15%;
  }
}
