@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap");
:root {
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", serif;
  --en: "museo-sans", sans-serif;
}

html {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  html {
    width: 100%;
    min-width: 100%;
  }
}

body {
  display: none;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 100%;
  }
}

body, html, p {
  font-family: var(--sans);
  font-weight: 300;
  color: #404040;
}
@media screen and (max-width: 768px) {
  body, html, p {
    font-size: 0.9rem;
  }
}

p {
  line-height: 1.9;
  letter-spacing: 0.05em;
}

a {
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  color: #7B7B7B;
}

a:hover {
  color: #F48432;
}

.pchidden {
  display: none;
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  z-index: 9999;
  align-items: center;
  padding: 0px;
  top: 0;
}
@media screen and (max-width: 768px) {
  header {
    height: 100px;
  }
}

.header_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header_title p {
  font-size: 0.7vw;
  margin-left: 10px;
  padding-top: 4px;
}

h1 {
  width: 245px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h1 {
    width: 45%;
    margin: 0px;
    text-align: center;
  }
}

#subcontents h1 {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  #subcontents h1 {
    position: fixed;
    top: 0;
  }
}

#wrapper::before {
  content: "";
  position: fixed;
  left: 33.33%;
  top: 0;
  background-color: #D9D9D9;
  z-index: -1;
  width: 1px;
  height: 100%;
}

#wrapper::after {
  content: "";
  position: fixed;
  right: 33.33%;
  top: 0;
  background-color: #D9D9D9;
  z-index: -1;
  width: 1px;
  height: 100%;
}

.txt_s {
  font-size: 13px;
}

.txt_s3 {
  font-size: 10px;
  width: 100%;
}

/* ------------------ */
/* fv */
/* ------------------ */
#mainimage {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #mainimage {
    height: 70vh;
  }
}

.box_orange {
  background-color: #FFFCF5;
}

.ta_c {
  text-align: center;
}

h2 {
  font-size: 40px;
  letter-spacing: 0.1em;
  margin: 3rem 0 2rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  letter-spacing: 0.1em;
}

.box {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 35px 0;
  }
}
.box h2 {
  margin-top: 10px;
}

.mt50 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mt50 {
    margin-top: 2rem;
  }
}

.mt60 {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .mt60 {
    margin-top: 3rem;
  }
}

.mt70 {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .mt70 {
    margin-top: 4rem;
  }
}

.f_center {
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .f_center {
    justify-content: start;
  }
}

.container {
  width: 1060px;
  margin: auto;
  max-width: 94%;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.4s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #404040;
  text-decoration: none;
  padding: 20px;
  display: block;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#g-nav li a:hover {
  color: #F48432;
}

.mail_btn a {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  bottom: 0px;
  right: 0px;
  display: block;
  width: 72px;
  height: 71px;
  background: #F4B132;
  border-radius: 10px 0 0px 0;
}
@media screen and (max-width: 768px) {
  .mail_btn a {
    width: 50px;
    height: 50px;
  }
}

.mail_btn a:hover {
  background-color: #404040;
}

.mail_btn a::before {
  color: #fff;
  content: "\f0e0";
  font-weight: 600;
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mail_btn a::before {
    font-size: 20px;
  }
}

.mail_btn2 a {
  bottom: 0px;
  right: 0px;
  display: block;
  width: 60px;
  height: 60px;
  margin: 20px auto;
  border: solid 1px #F4B132;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}

.mail_btn2 a:hover {
  background-color: #F4B132;
}

.mail_btn2 a::before {
  color: #F4B132;
  content: "\f0e0";
  font-weight: 600;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.mail_btn2 a:hover::before {
  color: #fff;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 72px;
  height: 71px;
  background: #F4B132;
  border-radius: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    width: 50px;
    height: 50px;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 20px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .openbtn1 span {
    left: 15px;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: 25px;
}
@media screen and (max-width: 768px) {
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
}

.openbtn1 span:nth-of-type(2) {
  top: 33px;
}
@media screen and (max-width: 768px) {
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
}

.openbtn1 span:nth-of-type(3) {
  top: 41px;
}
@media screen and (max-width: 768px) {
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
}

.openbtn1.active span:nth-of-type(1) {
  top: 28px;
  left: 26px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
@media screen and (max-width: 768px) {
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
  }
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 40px;
  left: 26px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media screen and (max-width: 768px) {
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
  }
}

.sec1_btn_list {
  margin-top: 3rem !important;
}
@media screen and (max-width: 768px) {
  .sec1_btn_list {
    margin-top: 1rem !important;
  }
}

.sec1_btn a {
  display: block;
  margin: 20px;
  width: 180px;
  height: 180px;
  color: #404040;
  border-radius: 50%;
  border: solid 2px #F48432;
  padding-top: 75px;
  text-align: center;
  position: relative;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .sec1_btn a {
    width: 140px;
    height: 140px;
    font-size: 0.8rem;
    padding-top: 58px;
    margin: 10px;
  }
}

.sec1_btn a::after {
  content: "\f13a";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 10px;
  transition: 0.5s;
  color: #CECECE;
}

.sec1_btn a:hover {
  background-color: #F48432;
  color: #fff;
}

.sec1_btn a:hover::after {
  color: #fff;
}

.arrow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: solid 1px #000;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  text-align: center;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 12px;
  position: absolute;
  right: 0;
  transform-origin: center;
}

.btn1:hover .arrow {
  transform: scale(1.05, 1.05);
}

.btn1_white p {
  color: #fff;
  font-weight: 300;
}
.btn1_white .arrow {
  border-color: #fff;
}

.section2 {
  margin-top: 7rem;
}

.hd--title1 h2 {
  margin-bottom: 7px;
}
.hd--title1 p {
  font-size: 4rem;
  font-family: var(--en);
  font-weight: 600;
  line-height: 1.4;
}

.btn_right {
  margin-left: auto;
}

.container {
  margin: auto;
}

.container img {
  max-width: 100%;
  height: auto;
}

.f_box {
  display: flex;
  flex-wrap: wrap;
}

.f_center {
  justify-content: center;
}

footer {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 10px;
  }
}

.about_l {
  width: 40%;
  text-align: center;
}
.about_l img {
  width: 245px;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about_l img {
    width: 150px;
    margin-bottom: 10px;
    margin-top: 0rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .about_l {
    width: 100%;
    margin-bottom: 10px;
  }
}

.about_r {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .about_r h2 {
    text-align: center;
  }
}
.about_r h3 {
  color: #F48432;
  font-size: 25px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .about_r h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .about_r {
    width: 100%;
  }
}
.about_r p {
  margin-bottom: 1.5rem;
}

.midashi2 {
  color: #F48432;
  font-size: 24px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .midashi2 {
    font-size: 18px;
  }
}

.btn2 {
  width: 30%;
  margin: 1.5%;
}
@media screen and (max-width: 768px) {
  .btn2 {
    width: 100%;
    margin: 1.5% auto;
  }
}
.btn2 a {
  display: block;
  border: solid 1px #ccc;
  position: relative;
  border-radius: 13px;
  line-height: 80px;
  text-align: center;
  padding-right: 15px;
  color: #404040;
}
.btn2 a::after {
  position: absolute;
  color: #F4B132;
  content: "\f138";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 4px;
  right: 10px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.btn2 a:hover {
  background-color: #FFF8EA;
  color: #F48432;
  border-color: #F48432;
}

.flow_box_list {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .flow_box_list {
    margin-top: 2rem;
  }
}

.flow_box {
  width: 170px;
  height: 170px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  margin: 25px;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 13px;
  position: relative;
  text-align: center;
  line-height: 2.2;
  background-color: #fff;
  border: solid 1px #CECECE;
}
@media screen and (max-width: 768px) {
  .flow_box {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .flow_box {
    width: 42%;
    height: auto;
    margin: 4%;
    font-size: 2.6vw;
    aspect-ratio: 1/1;
  }
}

.flow2 {
  border-width: 2px;
}

.num {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #F48432;
  color: #fff;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  top: -17px;
  left: -17px;
}

.right_line {
  border-right: solid 1px #ccc;
}
@media screen and (max-width: 768px) {
  .right_line {
    border-right: none;
  }
}

.btn3 a {
  color: #404040;
  display: block;
  padding: 10px 50px;
}
.btn3 a::after {
  color: #F48432;
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  margin-left: 4px;
  font-weight: 600;
}
.btn3 a:hover {
  color: #F48432;
}

.btn_list1 {
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .btn_list1 {
    padding: 40px 0;
    border-top: solid 1px #CECECE;
    border-bottom: solid 1px #CECECE;
  }
}

.btn3-0 a {
  padding: 10px 0;
}

/*  コンテンツ */
#mainimage2 {
  position: relative;
  padding-left: 40px;
  margin-left: 50px;
  margin-top: 150px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #mainimage2 {
    padding-left: 24px;
    margin-left: 24px;
    margin-top: 100px;
    margin-bottom: 20px;
    padding-right: 20px;
  }
}
#mainimage2 h2 {
  margin: 10px 0 25px;
}
@media screen and (max-width: 768px) {
  #mainimage2 h2 {
    margin: 5px 0 15px;
  }
}

#mainimage2::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 8px;
  height: 100%;
  left: 0%;
  border: solid 1px #F48432;
  transform: translateY(-50%);
}

.hd_sub {
  font-size: 14px;
}

.midashi3 {
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .midashi3 {
    font-size: 20px;
  }
}

.sub_flow {
  margin-bottom: 10px;
}

.midashi4 {
  color: #F48432;
  font-size: 23px;
  margin-top: 0px;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .midashi4 {
    font-size: 19px;
    margin-bottom: 20px;
  }
}

.midashi5 {
  color: #F48432;
  font-size: 26px;
  margin-top: 70px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .midashi5 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
}

.midashi5b {
  padding-top: 25px;
  font-size: 30px;
  margin-top: 70px;
  margin-bottom: 25px;
  font-weight: 400;
}
.midashi5b span {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .midashi5b {
    font-size: 27px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
}

.midashi7 {
  border-left: 3px solid #F48432;
  font-size: 19px;
  margin-top: 50px;
  padding-left: 7px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .midashi7 {
    font-size: 16px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
}

.mt_m_20 {
  position: relative;
  top: -10px;
}

.mt_m_30 {
  position: relative;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .mt_m_30 {
    top: -15px;
  }
}

.tab_box {
  padding-top: 0;
}

#tab_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0 0 1em;
}

#tab_menu li {
  width: 23%;
  padding: 0;
  margin: 0 2% 2% 0;
  text-align: center;
  list-style: none;
}

#tab_menu li {
  border-radius: 13px;
}
@media screen and (max-width: 768px) {
  #tab_menu li {
    width: 48%;
    margin: 1%;
  }
}
#tab_menu li a {
  display: block;
  border: solid 1px #ccc;
  position: relative;
  border-radius: 13px;
  line-height: 60px;
  text-align: center;
  padding-right: 15px;
  color: #404040;
}
@media screen and (max-width: 768px) {
  #tab_menu li a {
    line-height: 48px;
    font-size: 12px;
  }
}
#tab_menu li a::after {
  position: absolute;
  color: #F4B132;
  content: "\f138";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 4px;
  right: 10px;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #tab_menu li a::after {
    right: 5px;
    font-size: 10px;
  }
}
#tab_menu li a:hover {
  background-color: #FFF8EA;
  color: #F48432;
  border-color: #F48432;
}

#tab_menu li:last-child {
  margin-right: 0;
}

#tab_menu li.selected {
  background: #FFF8EA;
}

#tab_menu li img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
  padding: 13.5px 0.4em 13.5px 0;
}

.ex_box {
  width: 49%;
  border: solid 1px #F4B132;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ex_box {
    width: 100%;
    margin-bottom: 15px;
  }
}
.ex_box h5 {
  font-size: 17px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: -1em;
  margin-left: 1em;
}
.ex_box h5::before {
  color: #F48432;
  position: relative;
  top: -2px;
  font-size: 10px;
  content: "\f111";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 7px;
}

.ex_box:nth-child(even) {
  margin-left: auto;
}
.txt_s2 {
  font-size: 0.6rem;
  display: block;
  width: 100%;
  line-height: 1.4;
  margin-top: -50px;
}

.ex_box-wide {
  width: 100%;
}

.maru_box {
  margin-bottom: 1.5rem;
}

.maru_box li {
  margin-bottom: 7px;
  margin-top: 12px;
}
.maru_box li::before {
  color: #F48432;
  position: relative;
  top: -4px;
  font-size: 5px;
  content: "\f111";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.sub_ex {
  margin-bottom: 2rem;
}

.ex_box p {
  font-size: 15px;
  line-height: 1.6 !important;
  margin-bottom: 13px;
}

.ex_box li {
  font-size: 14px;
  margin-bottom: 10px;
  text-indent: -0.5rem;
  margin-left: 1rem;
  line-height: 1.5;
  font-family: var(--sans);
}
.ex_box li::before {
  position: relative;
  content: "-";
  margin-right: 3px;
}

p.txt_right {
  text-align: right !important;
  margin-top: 10px;
  font-size: 0.7rem;
}

.sankou {
  justify-content: end;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sankou {
    margin-top: 20px;
  }
}

.top0 {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .top0 {
    margin-top: 0px;
  }
}

.sankou a {
  text-indent: -1.2rem;
  margin-left: 1.5rem;
  line-height: 1.7;
  margin-left: 50px;
  display: block;
}

.sankou a::before {
  color: #F48432;
  content: "\f249";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 4px;
}

.sankou a:hover {
  color: #F48432;
}

.check li {
  margin-bottom: 22px;
  line-height: 1.8;
  text-indent: -1.3rem;
  margin-left: 1.5rem;
}
.check li::before {
  color: #FADDA5;
  content: "\f00c";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 4px;
}

.cal2 {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .cal2 {
    width: 100%;
    margin-top: -1px;
  }
}

.cal2:nth-child(even) {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .cal2:nth-child(even) {
    margin-bottom: 10px;
  }
}

.cal2 table {
  border: solid 1px #ddd;
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.8;
  height: 100%;
}

.cal2 th {
  font-size: 18px;
  width: 35%;
  padding: 20px 25px;
  text-align: center;
  font-weight: 500;
  border-right: solid 1px #ddd;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .cal2 th {
    padding: 10px 15px;
    width: 33%;
    font-size: 14px;
  }
}

.cal2 td {
  font-size: 18px;
  padding: 20px 15px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .cal2 td {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.tab_table {
  margin-bottom: 2rem;
}

.tab_panel p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.tab_panel p span {
  background: linear-gradient(transparent 60%, #FCECC2 60%);
}

.box p {
  line-height: 2.2;
}

.contact_btn a {
  width: 860px;
  line-height: 105px;
  border-radius: 10px;
  display: block;
  margin: 3rem auto 6rem;
  border: solid 1px #707070;
  font-size: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .contact_btn a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact_btn a {
    width: 100%;
    font-size: 15px;
    margin: 2rem auto 2rem;
  }
}
.contact_btn a:hover {
  background-color: #FFF8EA;
  color: #F48432;
}
.contact_btn a::before {
  color: #F48432;
  content: "\f2b6";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

.links_btn a {
  width: 500px;
  line-height: 80px;
  border-radius: 10px;
  display: block;
  margin: 3rem auto 6rem;
  border: solid 1px #707070;
  font-size: 16px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .links_btn a {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.links_btn a:hover {
  background-color: #FFF8EA;
  color: #F48432;
}
.links_btn a::after {
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_arrow.svg);
  background-size: 13px;
  position: absolute;
  right: 15px;
  top: 15%;
}

.tab_panel {
  margin-top: 50px;
  margin-bottom: 50px;
}

.tab_panel h3 {
  font-size: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .tab_panel h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.tab_panel h3 span {
  color: #F4B132;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .tab_panel h3 span {
    font-size: 22px;
  }
}

.contact_box {
  border-bottom: solid 5px #F7F7F7;
}

.sns_box {
  margin: 1rem 70px;
  font-size: 0.8rem;
  text-align: center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .sns_box {
    margin: 1rem 30px;
  }
}
.sns_box:hover {
  opacity: 0.5;
}
.sns_box img {
  display: block;
  margin: auto;
}

.about_box1 {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .about_box1 {
    margin-top: 8rem;
  }
}

.midashi6 {
  font-size: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .midashi6 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.midashi6 span {
  color: #F4B132;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .midashi6 span {
    font-size: 18px;
  }
}

.about_box2 p {
  margin-top: 20px;
}

.name {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.support_l {
  width: 60%;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .support_l {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .support_l h4 {
    margin-top: 30px;
  }
}

.support_l.or2 {
  margin-left: auto;
}

.support_r {
  width: 35%;
  margin-left: auto;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .support_r {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 30px;
  }
}

.about_history {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.about_history dt {
  width: 13%;
  font-weight: 300;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about_history dt {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 1px;
  }
}
.about_history dd {
  width: 75%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about_history dd {
    width: 100%;
  }
}

.sub_nav {
  position: absolute;
  right: 120px;
  top: 160px;
  z-index: 90;
  transition: 0.7s;
}
@media screen and (max-width: 768px) {
  .sub_nav {
    width: 90%;
    right: auto;
    top: 240px;
  }
}
.sub_nav ul {
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.87);
  padding: 30px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .sub_nav ul {
    padding: 10px 20px;
  }
}
.sub_nav li a {
  margin-left: 50px;
  padding-left: 18px;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .sub_nav li a {
    margin-left: 15px;
    margin-bottom: 15px;
  }
}
.sub_nav li a::before {
  content: "";
  display: inline-block;
  width: 10px; /*画像の幅*/
  height: 10px; /*画像の高さ*/
  background-image: url(../images/sub_ic.svg);
  background-size: contain;
  vertical-align: middle;
  transform: translateY(-50%);
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transition: 0.3s;
}
.sub_nav li a:hover {
  color: #F48432;
}
.sub_nav li a:hover::before {
  left: 3px;
}

.sub_nav.header-scroll {
  position: fixed;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sub_nav.header-scroll {
    top: 50px;
  }
}

.or1 {
  order: 1;
  margin-left: 0;
}

.or2 {
  order: 2;
}
@media screen and (max-width: 768px) {
  .or2 {
    order: 1;
    margin-bottom: 20px;
  }
}

.about_l3 {
  position: sticky;
  top: 100px;
}

.about_r3 {
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  .about_r3 {
    padding-left: 0px;
  }
}

.logo_ennoshita {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .logo_ennoshita img {
    max-width: 150px;
  }
}

.logo_tawawa {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .logo_tawawa img {
    max-width: 140px;
  }
}

.copy {
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .copy {
    font-size: 1rem;
  }
}

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

#entry {
  background-color: #F6F6F6;
  padding: 100px 0;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #entry {
    padding: 80px 0;
  }
}

#base-container .xN3lM {
  max-width: 506px !important;
}

@media screen and (max-width: 798px) {
  .sp_stxt p {
    font-size: 0.8rem;
  }
  .sphidden {
    display: none;
  }
  .pchidden {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */