@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1&display=swap');
:root {
  --gold-gra : linear-gradient(90deg, #b18c60 0%, #d9b16c 28.08%, #f2e6a6 73.89%, #c4a075 100%);
  --gold-gra-hover : linear-gradient(90deg, #b18c60 0%, #d9b16c 10.08%, #f2e6a6 40.89%, #c4a075 100%);
  --green-gra : linear-gradient(90deg, #318e60 0%, #4eb261 57.14%, #05773e 100%);
  --font-Shippori : "Shippori Mincho B1", serif;
}

html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  color: #1e2123;
  font-size: 1.6rem;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}
.shippori-mincho-b1-bold {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
}

label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
a {
  color: #4EB261;
  text-decoration: underline;
}
a:link {
  color: #4EB261;
  text-decoration: underline;
}
a:visited {
  color: #3a8548;
  text-decoration: underline;
}
a:hover {
  color: #3a8548;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
/*-form
-------------------------------------------------------------------*/
 
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input[type="text"],input[type="email"],input[type="tel"],textarea {
  box-shadow: none;
  border: none;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
}
/*  header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  padding-block: 1.68rem;
}
ul.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0;
  font-family: var(--font-Shippori);
  font-weight: 700;
  margin-left: 2rem;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #000000;
  transition: 0.6s;
}
ul.navbar-nav li a:hover {
  color: #339160;
  transition: 0.6s;
  position: relative;
}
ul.navbar-nav li a:hover:after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: var(--green-gra);
  position: absolute;
  bottom: -0.75rem;
  left: 0%;
  animation: hoverBar 0.6s forwards;
}
@keyframes hoverBar{
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  background-color: #FFFFFF;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  position: relative;
  z-index: 9999;
}
.navbar-brand img {
  zoom: 0.5;
}

/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 991px) {
  .toggle {
    display: none;
  }
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .navbar-collapse {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  ul.navbar-nav {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  ul.navbar-nav li {
    display: block;
    margin: 0 0 2rem 0;
    margin-left: 2rem;
  }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 80%;
    height: absolute;
  }
}


/*  footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
  margin-top: 10rem;
  clear: both;
  width: 100%;
  padding: 1.68rem;
  background: var(--green-gra);
  color: #ffffff;
}
.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.flogo {}
.flogo img {
  zoom: 0.5;
}
.fnav {
  display: flex;
  justify-content: flex-end;
}
.fnav ul {
  list-style: none;
  margin-left: 1rem;
}
.fnav ul li {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.fnav ul li a {
  color: #ffffff;
  text-decoration: none;
}
.fnav ul li a:hover {
  text-decoration: underline;
}
.flogo address {
  line-height: 1.3;
  margin-top: 1.5rem;
  font-style: normal;
}
.page-top {
  right: -50px;
  bottom: 50px;
  position: fixed;
}
.page-top a {
  border-radius: 10rem;
  background-color: #333;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
footer#globalFooter p.copyright {
  font-family: var(--font-Shippori);
  text-align: center;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .flogo {
    text-align: center;
    margin-bottom: 4rem;
  }
  .fnav {
    display: flex;
    justify-content: center;
  }
  .fnav ul {
    padding: 0;
    list-style: none;
    margin-inline: 1rem;
    margin-bottom: 4rem;
  }
  .fnav ul li {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  .fnav ul li a {
    text-decoration: none;
  }
  .fnav ul li a:hover {
    text-decoration: underline;
  }
  .flogo address {
    line-height: 1.3;
    margin-top: 1.5rem;
    font-style: normal;
  }
}
/*#　contents ----------------------------------------------------*/
.contents-dammy {
  padding-block: 40rem;
  text-align: center;
}
.contents-dammy-home {
  padding-block: 8rem 3rem;
  text-align: center;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content:center;
}
.flex-end {
  justify-content:flex-end;
}
.flex-around {
  justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pageTitle {
  position: relative;
  margin-bottom: 10rem;
}
.pageTitle .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.pageTitle .title h1 {
  font-family: var(--font-Shippori);
  font-weight: 700;
  text-shadow: 2px 2px 0px #ffffff;
}
.contents-title {
  font-family: var(--font-Shippori);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: 0.2rem;
}
.pageDonation {
  margin-block: 10rem;
}
.pageDonation__wrap {
  background-image: var(--green-gra);
  border-radius: 2rem;
  padding: 3rem 5rem 5rem;
  color: #ffffff;
}
.pageDonation__wrap h2 {
  font-family: var(--font-Shippori);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.2rem;
}
.commonSection {
  margin-top: 10rem;
}
.wp-pagenavi {
  clear: both;
    margin-block: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.wp-pagenavi .pages {
    margin-right: 0.5rem
}
.wp-pagenavi a.nextpostslink {
    color: #111111;
    text-decoration: none;
    margin-left: 0.5rem
}
.wp-pagenavi a.previouspostslink {
    color: #111111;
    text-decoration: none;
    margin-inline: 0.5rem;
}
.wp-pagenavi a.page, .wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  margin-inline: 3px;
    border-radius: 100px;
    height: 30px;
    width: 30px;
}

.wp-pagenavi a, .wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi span.current {
  font-weight: 700;
}

@media (max-width: 767px) {
  .pageDonation {
    margin-block: 3rem;
  }
  .pageDonation__wrap {
    padding: 3rem 2rem 3rem;
  }
  .pageDonation__wrap .button {
    text-align: center;
  }
  .pageDonation__wrap .col-sm-6:last-child {
    order:1;
    margin-bottom: 3rem;
  }
  .pageDonation__wrap .col-sm-6:first-child {
    order:2;
  }
  .pageTitle {
    margin-bottom: 3rem;
  }
  .pageTitle .title h1 {
    font-size: 1.8rem;
  }
  .commonSection {
    margin-top: 3rem;
  }
}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */
.button a {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  text-align: center;
  color: #333;
  text-shadow: 0px 1px 1px #ffffff;
  text-decoration: none!important;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 10px 0;
  border-radius: 100px;
  background-image: var(--gold-gra);
  transition: .5s;
  background-size: 200%;
}

.button a:hover {
  background-position: right center;
}
/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  padding-bottom: 6rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h2 {
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}
.cookie__block {
  padding-block: 1rem;
}
.cookie__block h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
}
.cookie__block h3 {
  border-bottom: 1px solid #cccccc;
  padding-block-end: 1rem;
}
.cookie__block p {
  margin-block-end: 1rem;
}
.simplePage_title {
  margin-top: 2rem;
}

/***********
 * お問い合わせ
 * *********/
.contact {
  padding-block-end: 10rem;
}
.contact p {
  text-align: center;
}
/
.contact__mc {
  text-align: center;
  border-bottom: 1px solid #939393;
  padding-bottom: 10rem;
}
.contact_tel {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #939393;
}
.contact_tel h2 {
  margin-bottom: 2rem;
}
.contact_tel .tel {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  padding-block: 0;
  font-size: 4rem;
  line-height: 1;
}
.contact_tel .tel a {
  text-decoration: none;
}
.contact_tel .tel i {
  margin-inline-end: 1rem;
}
.contact_tel .tel i img {
  margin-block-start: -0.8rem;
}
.form {
  padding-top: 5rem;
}
.form h2 {
  text-align: center;
}
.form p {
  margin-bottom: 0;
}
.form_title {
  margin-block-end: 3rem;
}

.form__inner {
  width: 100%;
  max-width: 73rem;
  margin-right: auto;
  margin-left: auto;
}
.form__inner dl {
  display: flex;
  margin-bottom: 2.3rem;
  text-align: left;
  align-items: center;
}
.form__inner dl dt {
  width: 25%;
  font-size: 1.3rem;
}
.form__inner span.red {
  color: red;
}
.form__inner dl dd {
  width: 75%;
}
.form__inner dl dd #preview {
  width: 100%;
  height: auto;
}
.form__inner dl dd a {
  text-decoration: underline;
}
.ex p {
  text-align: left;
  font-size: 1.3rem;
  margin-block-end: 0.5rem;
}
.confirm .form__inner dl {
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.form.confirm p {
text-align: left;
}
.grecaptcha-badge { visibility: hidden; }

.form.finish p {
 margin-block-end: 3rem;
}

.confirm .btn p {
  display: flex;
  justify-content: center;

}
.form__inner .btn {
  padding-top: 8rem;
}
.form__inner .btn input {
  background: var(--gold-gra);
  width: 26rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #111111;
  text-shadow: 1px 1px 1px #ffffff;
  border-radius: 6rem;
  margin-block-end: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.6s;
}
.form__inner .btn input:hover {
  background-position: right center;
  background-size: 200%;
  transition: 0.6s;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #dfdfdf;
  background-color: #F4F4F4;
  border-radius: 0;
  padding:1rem 1rem;
  border-radius: 8px;
}
.finish__inner {
  text-align: left;
}
.finish__inner h2 {
  font-family: var(--title-font);
  font-size: 2.4rem;
  margin-block-end: 4rem;
  text-align: center;
}
.finish__inner p {
  margin-block-end: 2rem;
}
#formWrap {}
#formWrap dl {
 border-bottom: 1px solid #cccccc;
}
#formWrap dt {
  width: 28%;
}
#formWrap dd {
  width: 72%;
}

/** お知らせ
 * ********************************/
.news__wrap {}
.news__mc {}
ul.homeNews__list {
  list-style: none;
  padding: 0;
}
ul.homeNews__list li {
  border-bottom: 1px solid #cccccc;
}
ul.homeNews__list li a {
  display: block;
  padding: 2rem;
  text-decoration: none;
  color: #111111;
}
ul.homeNews__list li a:hover {
  color: #111111;
  background-color: #f4f4f4;
}
ul.homeNews__list li a .date {
  font-weight: 600;
  margin-right: 3rem;
}
ul.homeNews__list li a .ttl {}
.news__mc h2 {
  background: var(--green-gra);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  padding: 1.5rem 3rem;
}
.news_content p {
  margin-bottom: 2rem;
}

.news_content p.day {
  margin-bottom: 3rem;
}
.news_nav {
  margin-top: 5rem;
}
.news_nav ul {
  list-style: none;
  padding: 0;
}
.news_nav li {}
.news_nav a {
  text-decoration: none;
}
.news_nav a:hover {
  opacity: 0.6;
}
.news_nav a i {
  margin-right: 0.6rem;
}
@media (max-width: 767px) {
  ul.homeNews__list li a span {
    display: block;
  }
}
/* home ------------------------------------------------------------------------------*/
.mv {
  position: relative;
}
.mv__bg {
  opacity: 0;
  animation-name: mvStart;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
.mc {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation-name: mvStart;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes mvStart{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mc img {
  width: 100%;
  max-width: 36rem;
  height: auto;
}


.home_concept .button {
  text-align: center;
}
.home_concept .button a {
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.home_concept-img {
  margin-bottom: 3rem;
}
.home_concept-img img {
  border-radius: 2rem;
}
/** about
 * *******************************************************/
.about-mc h2 {
  font-size: 3rem;
}
.about-wrap {}
.about-wrap dl {
  display: flex;
  flex-wrap: wrap;
}
.about-wrap dt {
  width: 25%;
}
.about-wrap dd {
  width: 75%;
}
.chairman__img {
  margin-bottom: 4rem;
}
.chairman__img img {
  border-radius: 2rem;
}
.book {
  border-radius: 2rem;
  background-color: #EDEDED;
  padding: 3rem 2rem 1rem;
}
.book__inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.book__inner img {
  margin-block: 0.7rem 3rem;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
.outline {
  background-image: var(--green-gra);
  padding-block: 5rem;
}
.outline h2 {
  color: #ffffff;
}
.outline__wrap {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 5rem;
}
.outline__wrap table {
  width: 100%;
  border-top: 1px solid #cccccc;
}
.outline__wrap table th {
  border-bottom: 1px solid #cccccc;
  padding: 2rem;
}
.outline__wrap table td {
  border-bottom: 1px solid #cccccc;
  padding: 2rem;
}
@media (max-width:767px) {
  .chairman__img {
    width: 50%;
    height: auto;
    margin-inline: auto;
  }
  .book__inner {
    display: block;
    align-items: flex-start;
    gap: 3rem;
    text-align: center;
  }
  .book__inner p {
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .outline {
    padding-block: 3rem;
  }
  .outline h2 {
    color: #ffffff;
  }
  .outline .contents-title {
    margin-bottom: 3rem;
  }
  .outline__wrap {
    padding: 4rem 2rem;
  }
  .outline__wrap table th {
    padding: 1rem;
    white-space: nowrap;
  }
  .outline__wrap table td {
    padding: 1rem;
  }

}

/** action
 * *******************************************************/
.action {}
.action__wrap {}

.action__title {
  text-align: center;
  margin-bottom: 4rem;
}
.action__title h3 {
  display: inline-block;
  color: #ffffff;
  background-image: var(--green-gra);
  font-family: var(--font-Shippori);
  padding: 0.5rem 1.5rem 0.5rem 2.5rem;
}
.action__block {
  margin-bottom: 5rem;
}
.action__block-inner {
  background-color: #EFEFEF;
  border-radius: 2rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.action__block-inner ul {
  padding-left: 2.5rem;
}
.action__block-inner ul li {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.action__wrap .img {
  display: block;
  margin-bottom: 1.5rem;
}
.sponcer {
  margin-top: 5rem;
}
.sponcer p.center {
  margin-bottom: 4rem;
}
.sponcer__wrap {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #cccccc;
}
.sponcer__wrap img {
  margin-bottom: 1rem;
}
.sponcer__wrap h3 {
  font-family: "Noto Sans JP", "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
}

.seminar {
  padding-block-end: 30px;
  display: flex;
  justify-content: space-between;
}
h3.seminar-title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.seminar span {
  width: 28%;
}
.seminar span:first-child {
  width: 71%;
}
@media (max-width:767px) {
  .sponcer__wrap-logo {
    width: 50%;
    height: auto;
    margin-inline: auto;
    text-align: center;
  }
  .movie  {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .movie iframe {
    width: 100%;
    height: 100%;
  }
}

/** donation
 * *******************************************************/
.donation img {
  margin-bottom: 4rem;
}
.donation.button a {
  margin-inline: auto;
}

 @media (min-width: 768px) {
  .donation {
    margin-bottom: 40rem;
  }
}

/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:1024px) {}
@media (max-width:767px) {
    /**********
   * お問い合わせ
   * *************/
  .contact__page {
    padding-top: 3rem;
  }
  .contact__mc {
    padding-bottom: 5rem;
  }
  .contact_tel {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .contact_tel h2 {
    font-size: 2rem;
    margin-block-end: 1rem;
  }
  .contact_tel .tel {
    font-family: "Arial";
    padding-block: 0;
    font-size: 2.4rem;
  }
  .contact_tel .tel img {
    width: 2.3rem;
    height: auto;
  }
  .form {
    padding-top: 5rem;
  }
  .form h2 {
  font-size: 2rem;
  margin-block-end: 2rem;
  }
  .contact__page h2 {
    margin-bottom: 2rem;
  }
  .contact__page .form h2 {
    margin-bottom: 1rem;
  }
  .form__inner dl {
    display: block;
    margin-bottom: 2rem;
  }
  .form__inner dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .form__inner dl dt sup {
    color: red;
  }
  .form__inner dl dd {
    width: 100%;
  }
  .form__inner dl dd.file {
    text-align: center;
    padding-top: 3rem;
  }
  .form__inner dl dd #preview {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .form__inner .btn {
    padding-top: 4rem;
  }
  #formWrap dt {
    width: 100%;
    text-align: left;
  }
  #formWrap dd {
    width: 100%;
  }
  a.privacy {
    display: block;
    margin: 0.5rem auto;
  }
  .privacypolicy h2 {
    font-size: 2.4rem;
  }
  .cookie__block h2 {
    font-size: 2.4rem;
  }
}
@media (max-width:576px) {}
@media (max-width:414px) {}
@media (max-width:320px) {}