@charset "UTF-8";
/* -----------------------------------
Flexbox設定
----------------------------------- */
.footer-container,
.header-container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

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

.flex .col-2,
.flex .col-3 {
  width: 100%;
  margin-bottom: 20px;
}

.wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.flex-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.center {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container,
  .header-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .flex {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .flex .col-2 {
    width: calc(50% - 15px);
  }
  .flex .col-3 {
    width: calc(33.33% - 15px);
  }
}

@media (min-width: 768px) and (max-width: 1029px) {
  .container,
  .footer-container,
  .header-container {
    max-width: 720px;
  }
}

@media (min-width: 1030px) {
  .container,
  .footer-container,
  .header-container {
    max-width: 850px;
  }
}

/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

a,
input,
textarea,
img {
  -webkit-transition: .3s;
  transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

body {
  /* ※001 - 背景色の変更↓ */
  background-color: #f7e7b6;

  /* ※002 - 文字色の変更↓ */
  color: #000000;
  /* ※003 - 基本フォントの変更↓ */
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 0;
  margin: 0;
  /* ※004 - 背景を画像で覆いたい場合
  background-image: url('../img/background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  */
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}

@media (min-width: 481px) {
  .only-phone {
    display: none;
  }
}

/* つけるとスマホで見たときだけ表示されなくなるクラス */
.except-phone {
  display: none;
}

@media (min-width: 481px) {
  .except-phone {
    display: inline-block;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: none;
}

@media (min-width: 481px) {
  .only-pad {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}

@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}

@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

.footer-container,
.header-container {
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer-container,
  .header-container {
    padding: 0 35px;
  }
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  line-height: 1.8em;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center,
ol.center,
p.center,
ul.center {
  text-align: center;
}

p {
  margin: 0 auto 0.5em;
  font-size: 17px;
}

ol,
ul {
  font-size: 14px;
}

code {
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  background: #f5f5f5;
  font-size: 12px;
  border: 1px solid #cacaca;
  padding: 1px 5px;
  border-radius: 3px;
  margin: 0 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.6em auto 0.1em;
}

h1 {
  text-align: center;
  margin: 40px auto;
}

h2 {
  font-size: clamp(18px, 5vw, 32px);
  color:#f47f88;
  padding: 8px 0.5em;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  h2 {
    font-size:3vw;
  }
}

h3 {
  font-size: 24px;
  position: relative;
  padding-left: 10px;
  margin-bottom: 20px;
  border-left: solid 5px #7db4e6;
}

@media (min-width: 768px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-size: 16px;
}

h4:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #b3a019;
  margin: 0 10px 2px 0;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #fdf1a2));
  background: linear-gradient(transparent 30%, #fdf1a2 30%);
  font-weight: bold;
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  /* ※005 - リンク色↓ */
  color: gray;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  /* ※005 - リンクホバー色↓ */
  color: #f47f88;
}

a:hover img {
  opacity: 0.6;
}

a.btn {
  display: block;
  /* ※006 - リンクボタン色↓ */
  background: #000000;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  text-align: center;
  padding: 10px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 5px;
}

a.btn.center {
  margin: 40px auto;
}

a.btn:hover {
  /* ※006 - リンクボタンホバー色↓ */
  background: #b3a019;
}

/* -----------------------------------
ヘッダー
----------------------------------- */
header {
  max-width: 100%;
  position: fixed;
  overflow: hidden;
  padding: 0;
  height: auto;
  background-color: white;
  z-index: 10000; 
}




@media (min-width: 1030px) {
  header {
    height: 100px;
  }
}

nav#globalnav {
  /* ※007 - メニューバーをスクロール追従したくない場合は、position: relative; に変更↓ */
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 60px;
  justify-content: space-between;
}

@media (min-width: 1030px) {
  nav#globalnav {
    height: 80px;
    top: 0;
  }
}

nav#globalnav .header-container {
  background: white;
  position: relative;
  display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
}

@media (min-width: 1030px) {
  nav#globalnav .header-container {
    display: -webkit-box;
    display: flex;
            justify-content: space-between;
  }
}

nav#globalnav h1 {
  margin: 0;
  line-height: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 1030px) {
  nav#globalnav h1 {
    line-height: 80px;
  }
}

nav#globalnav h1 a {
  /* ※008 - ヘッダーバーサイトタイトル色↓ */
  color: #000000;
  display: block;
  padding: 0;
  font-size: 18px;
}

nav#globalnav h1 a:hover {
  /* ※008 - ヘッダーバーサイトタイトルホバー色↓ */
  color: #b3a019;
}

nav#globalnav h1 a img {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 10px;
}

nav#globalnav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

nav#globalnav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
}

nav#globalnav ul li a:hover {
  /* ※009 - ヘッダーバーメニューホバー色↓ */
  color: #b3a019;
}


/* -----------------------------------
メイン部分
----------------------------------- */
main {
  margin: 0 auto;
  margin-top: 60px;
  overflow: hidden;
}

header + main {
  margin-top: 0;
}

/* section {
  padding: 10px 16px;
} */

section#main-visual {
  padding: 0;
}

@media (min-width: 768px) {
  section {
    padding: 20px 35px;
  }
}

.container {
  background: #f7e7b6;
  border: none;
}

@media (min-width: 768px) {
  .container {
    border-radius: 15px;
    overflow: hidden;
  }
}



#main-visual {
  /* ※011 - スマホから見た場合のメインビジュアル画像の高さ（デフォルトは画面いっぱい）↓ */
  height: calc(100vh - 60px);
  position: relative;
}

#main-visual:before {
  /* ※011 - スマホから見た場合のメインビジュアル画像にかぶせる下向き矢印↓
    不要であれば、 #main-visual:before { ～ } を波カッコごと削除してください */
  content: '';
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  right: 0;
  left: 0;
  bottom: 20px;
}

@media (min-width: 768px) {
  #main-visual {
    /* ※011 - PCから見た場合のメインビジュアル画像の高さ↓ */
    height: 400px;
  }
  #main-visual:before {
    display: none;
  }
}

#main-visual .container {
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

#main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------
フッター部分
----------------------------------- */
footer {
  margin: 0 auto;
  overflow: hidden;
  min-height: 80px;
}

footer p {
  margin: 15px auto;
  font-size: 12px;
}

.footer-container {
  /* ※012 - フッターエリアの背景色と文字色↓ */
  background: transparent;
  overflow: hidden;
  min-height: 80px;
  text-align: center;
}

/* -----------------------------------
飾りボックス
----------------------------------- */
.box1 {
  border: 1px solid #fdf1a2;
  padding: 10px;
  margin: 40px auto;
  border-radius: 3px;
}

@media (min-width: 1030px) {
  .box1 {
    padding: 15px;
  }
}

.box1 > *:first-child {
  margin-top: 0;
}

.box1 > *:last-child {
  margin-bottom: 0;
}

.box2 {
  border: 1px solid transparent;
  padding: 10px;
  margin: 40px auto;
  background: #fff7c0ed;
  border-radius: 3px;
}

@media (min-width: 1030px) {
  .box2 {
    padding: 15px;
  }
}

.box2 > *:first-child {
  margin-top: 0;
}

.box2 > *:last-child {
  margin-bottom: 0;
}



/* -----------------------------------
リストのデザイン
----------------------------------- */
.container ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.container ul li {
  margin-left:0.5rem;
  margin-right:0.5rem;

}

.container ul ul {
  margin: 5px 0 0;
}

.container ul ul li {
  margin: 0 0 5px 40px;
}

.container ol {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
}

.container ol li {
  margin-left: 30px;
  margin-bottom: 10px;
  position: relative;
}

.container ol li:before {
  background: #000000;
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: 11px;
  top: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
  text-align: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}

dl {
  margin: 40px auto;
}

dl dt {
  font-weight: bold;
}

dl dd {
  border-left: 1px solid #cccccc;
  margin-left: 20px;
  padding: 5px 0 5px 20px;
}

dl.update {
  border: 1px solid #e9e9e9;
  font-size: 13px;
  border-bottom: none;
  border-radius: 5px;
}

dl.update dd,
dl.update dt {
  padding: 8px;
  margin: 0;
  border-left: none;
}

dl.update dd {
  padding-top: 0;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 481px) {
  dl.update {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 40px 0;
  }
  dl.update dt {
    width: 90px;
    padding: 8px;
    border-bottom: 1px solid #e9e9e9;
  }
  dl.update dd {
    width: calc(100% - 90px);
    padding: 8px;
    border-bottom: 1px solid #e9e9e9;
  }
}


/* -----------------------------------
SNSリンク
----------------------------------- */
ul.sns {
  list-style: none;
  display: -webkit-box;
  display: flex;
}

ul.sns li {
  margin: 0;
}

ul.sns li a {
  display: block;
  margin-right: 15px;
}

ul.sns li a img {
  width: 30px;
  height: 30px;
}

/* -----------------------------------
テーブル
----------------------------------- */
table {
  border-collapse: collapse;
  min-width: 640px;
}

table td,
table th {
  padding: 5px 14px;
  font-size: 14px;
  line-height: 1.6em;
}

table tr:not(:first-of-type) {
  border-top: 1px solid #b3a019;
}

table tr:not(:last-of-type) {
  border-bottom: 1px solid #b3a019;
}

table th {
  background: #fdf1a2;
}

.table_wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  margin: 40px auto 40px 0;
  border: 1px solid #b3a019;
  border-radius: 5px;
}

/* -----------------------------------
上に戻るボタン
----------------------------------- */
a#totop {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 20;
  background: #000000;
  right: 0;
  bottom: 0;
  border-left: 1px solid #ffffff45;
}

a#totop.totop-hidden {
  opacity: 0;
  z-index: -1;
}

a#totop:before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
  top: 24px;
  right: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a#totop:hover:before {
  top: 20px;
}

/* -----------------------------------
何かCSSを書き足す場合は、ここから下に書き足すと
あとからもとに戻したくなった場合に便利です。
----------------------------------- */

/*メインビジュアル*/
.mainvisual {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .mainvisual {
   margin-top: 15px;
  }
}

/* リンクボタン */
.explanation-2 {
  margin: 20px 0;
}

.flex-item__txt p {
font-size: clamp(14px, 2vw, 20px);
}
/* 成果を出し続ける理由 */

.supplement {
  text-align: center;
  font-size: clamp(16px, 2.5vw, 26px);
}


.flex-item{
  display: block;
  justify-content: center;
  margin: 20px 0;;
  padding: 0 2rem;

}

/*最後の要素以外に余白を追加*/
.flex-item:not(:last-child){
  margin-bottom: 35px;
}

.flex-item__img {
  width: 100%;
  align-items: center;
  padding: 1 2rem;
}

/*交互*/
/* .flex-item__img {
  width: 45%;
  align-items: center;
  padding: 1rem;
} */


.flex-item__img img{
  width:  90%;
  height: 60%;
  object-fit: cover;
}
@media (max-width: 600px) {
.flex-item__img img{
  width:  100%;
  height: auto;
}
}

.flex-item__txt{
  width: 100%;
  padding: 1 2rem;
}

/*交互*/
/* .flex-item__txt{
  width: 55%;
  padding: 1rem;
} */


.flex-item__txt p{
  line-height: 1.8;
}

.flex-item:nth-child(even){

  flex-direction: row-reverse;
  
  }

.explanation-5 ul {
  /* リストのスタイルをリセットする */
  list-style: none;
  padding: 0;
  margin: 0;
}

.explanation-5 ul li {
  position: relative;
  padding-left: 30px; /* 画像の幅 + 画像とテキストの間隔 */
  display: flex;
  align-items: center;
  
}

.explanation-6  ul{
  display: block;
  padding-left:1.6rem;
}
.explanation-6  ul li{
  padding-bottom: 20px;
  align-items: center;
  text-align:justify;
  padding-left: 1.5rem;
  background:url(../img/icon2.png) no-repeat 0 0;
  background-size:auto 20px;
  font-size: clamp(16px, 2.4vw, 32px);

}
@media (min-width: 410px) {
  .explanation-6  ul{
    display: block;
    padding-left:2.2rem;
  }
  }

@media (min-width: 768px) {
.explanation-6  ul{
  display: block;
  padding-left:6rem;
}
}
.explanation-7 {
  background-image: url(../img/user.background.png);
  background-size: auto 85%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0.3rem 0 0.3rem;
}

/*PCでの紹介動画背景画像サイズ*/
@media (min-width: 768px) {
  .explanation-7{
    background-size: 700px auto;
    background: cover;
  }
}
@media (min-width: 1030px) {
  .explanation-7{
    background-size: 840px auto;
    background: cover;
  }
}

.explanation-7 ul {
  /* リストのスタイルをリセットする */
  list-style: none;
  padding-top: 30%;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 30%;
  display: block;
  align-items: center;
}

.explanation-7 ul li {
  position: relative;
   /* 画像の幅 + 画像とテキストの間隔 */
  align-items: center;
  margin-bottom: 20px;
  font-size: clamp(16px, 2vw, 28px);
}

@media (min-width: 1030px) {
.explanation-7 ul li {
  align-items: center;
  margin-bottom: 60px;
  font-size: clamp(14px, 2.2vw, 28px);
}
}

.explanation-8  ul{
  display: block;
  padding: 0 3.4rem;
}
.explanation-8  ul li{
  padding-bottom: 20px;
  align-items: center;
  text-align: justify;
  padding-left: 1.5rem;
  background:url(../img/icon3.png) no-repeat 0 0;
  background-size:auto 20px;
  font-size: clamp(17px, 3.4vw, 28px);
  margin: 0 2rem;
}

@media (min-width: 410px) {
  .explanation-8  ul{
    display: block;
    padding-left:3rem;
  }
  }

@media (min-width: 768px) {
.explanation-8  ul{
  display: block;
  padding-left:6rem;
}
}

@media (min-width: 1030px) {
.explanation-8  ul{
  display: block;
  padding-left:9rem;
}
}
 


.explanation-10 {
  margin: 0 1rem;
  }
.explanation-10 img {
margin: 25px 0;
}


/* 吹き出し本体 */
.balloon1{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: black;
  background-color: #f4b9be;
  margin-left: 50px;          /* 左に余白を設ける */
  margin-bottom: 30px;
  opacity: 1;
}
/* 画像 - 絶対配置で左上に配置 */
.balloon1 .icon{
  position: absolute;
  left: -50px;
  top: 0;
}
/* 三角アイコン */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #f4b9be;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  opacity: 1;
}

/* 吹き出し本体 */
.balloon2{
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: black;
  background-color: white;
  margin-right: 50px;          /* 右に余白を設ける */
  margin-bottom: 30px;
}
/* 画像 - 絶対配置で右上に配置 */
.balloon2 .icon {
  position: absolute;
  right: -50px;
  top: 0;
}
/* 三角アイコン */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 20px;
  border-left: 15px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.explanation-11 {
  width: 100%;
  height: auto;
  background-image: url(../img/shoukai.background1.png) ;
  background-size:520px auto;
  background-repeat: no-repeat;
  background-position:center;
  margin: 15px 0.5rem;
  padding-top: 75px;
  padding-bottom: 150px;
}

.explanation-11 p {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.lecturer-profiles {
  margin: 0 1rem;
}

/*PCでの講師紹介背景画像3：4*/
@media (min-width: 600px) {
  .explanation-11{
    background-image: url(../img/shoukai.background2.png) ;
    background-size: 710px auto;
    background: cover;
  }
}
@media (min-width: 1030px) {
  .explanation-11{
    background-image: url(../img/shoukai.background2.png) ;
    background-size: 820px auto;
    background: cover;
  }
}

 /* ==== プロフィール｜全体 ==== */
.profile {
  display: flex;
  justify-content:left;
  width: 100%;
  padding-top: 10%;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  position: relative;
  }

  .profile img {
  width: 125%;
  height: auto;
  object-fit: cover;
  
  }

  .profile-item01 {
    flex-basis: 33%;
    padding-left: 1rem;
  }
  .profile-item02 {
    flex-basis: 66%;
    padding: 0.5rem;
    margin-left: 0.1rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -25%);
  }

  .profile-about {
    justify-content: center;
   overflow:auto;
   width:80%; height:260px;
   padding:1rem;
   margin-left: 1rem;
  

  }
  .profile-about p{
  font-size: 16px;
  }

/*PCでの講師紹介*/
@media (min-width: 600px) {
  .profile {
    padding-top:20%;
  }
  .profile img {
    width: 60%;
    height: auto;
    object-fit: cover; 
    }

  .profile-item01 {
      flex-basis: 45%;
      padding-left: 4rem;
    }
  .profile-item02 {
      flex-basis: 55%;
      padding-top: 4rem;
      margin-left: 3rem;
      font-size: 25px;

    }
  .profile-about {
    margin-left: 3rem;
    padding-left: 3rem;
    font-size: clamp(14px, 2.6vw, 30px);
    }
  
  }

  @media (min-width: 1030px) {
    .profile {
      padding-top:20%;
    }
    .profile img {
      width: 60%;
      height: auto;
      object-fit: cover; 
      }
  
    .profile-item01 {
        flex-basis: 45%;
        padding-left: 4rem;
      }
    .profile-item02 {
        flex-basis: 55%;
        padding-top: 4rem;
        margin-left: 3rem;
        font-size: 25px;
  
      }
  }

  .footer-container {
    /* ※012 - フッターエリアの背景色と文字色↓ */
    background: transparent;
    overflow: hidden;
    min-height: 80px;
    text-align: center;
    background-color: white;
  }

  .footer-container img {
    width: 25%;
    height: auto;
    margin: 15px auto;
  }

  .footer-container ul {
    display: flex;
    justify-content: space-between;
    margin: 0 2rem; 
  }

  @media (min-width: 768px) {
    .footer-container ul{
     margin: 0 13rem;
    }
  }

  .pc-br {
    display: none;
  }

  /*iPhoneSE改行対応*/
  .se-br {
    display: none;
  }

  .se-br2 {
    display: none;
  }

  .tb-br {
    display: none;
  }

  @media (min-width: 1030px) {/*PC*/
    .pc-br {
      display: block;
    }

  }

  @media (max-width: 420px) {/*iPhone*/
    .se-br {
      display: block;
    }

  }

  @media (max-width: 430px ) {/*iPhone*/
      .se-br2 {
      display: block;
    } 
  }
  @media (max-width: 380px ) {/*iPhone*/
    .se-br2 {
      display: none;
    }
  }

  @media (max-width: 736px) {/*iPhone*/
    .tb-br{
      display: block;
    }
  }

  
  .flex-item__img {
    position: relative;
  }
  
  .flex-item__img::before {
    /* 基本的に変更しないプロパティ */  
    content: '';
    position: absolute;
    top: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  
    /* アイコンとテキストの間隔を調整するプロパティ */
    padding-left: -24px;
  
    /* アイコンの上下位置を調整するプロパティ */
    transform: translateY(-50%);
  
    /* アイコンのサイズを調整するプロパティ */
    width: 20px;
    height: auto;
  
  
    /* 表示させるアイコンのパスを指定 */
    background-image: url(..img/icon1.png);
  }

  .privacy_policy main{
    background-color: whitesmoke;
    padding: 0 1.5rem;
  }
 
  .flex-item__img p {
    text-align: center;
    color: #f47f88;
    border-bottom: solid 5px #f47f88;

  }