/*
Theme Name: テルリンphoto
Description: テルリンphoto
Version: 1.0
Author: miraiy
Author URI: https://wp.miraiy.com/

@charset "utf-8";

/*!
 * reset.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */html{box-sizing:border-box;-webkit-text-size-adjust:100%;word-break:normal;-moz-tab-size:4;tab-size:4}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}hr{overflow:visible;height:0;color:inherit}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}input{border-radius:0}[disabled]{cursor:default}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer;color:inherit}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;white-space:normal;max-width:100%}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}


/* 共通部分 */
html {
  font-size: 100%;
}
body, a {
  font-family: '游ゴシック','Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
  line-height: 1.7;
  color: rgb(0, 0, 0);
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.3rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}


a {
  text-decoration: none;
  color: rgb(26, 12, 170);
}
a:hover {
  text-decoration: underline;
}
a[target="_blank"]::after {  
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(images/Icon_NewTab.png);
  background-size: contain;
  vertical-align: middle;
}

img {
  max-width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

.button {
  display: inline-block;
  font-size: 1rem;
  border: solid 1px rgba(122, 122, 122, 0.8);
  border-radius: 3px;
  padding: 0.3rem 1.2rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* 大きな背景画像 */
.big_bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



/* ヘッダー */
#page_header {
  position: sticky;  
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(5,5,5,.95);
  z-index: 90;
}

#page_header .top_most {
  z-index: 9999;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 980px) {
  .header_container {
    flex-direction: column;
    align-items: stretch;
  }
}


.grid_container {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 10px;
  margin-bottom: 20px;
}


.logo {
  height: 40px;
  margin: 5px 0;
}


.slider_wrapper {
  max-width: 100%;
  overflow-x: hidden;
}


/* 
パンくずリスト
*/
.breadcrumb {
  display: flex;
  font-size: 0.8rem;
  padding: .5rem 0;
  overflow-x: auto;
}
.breadcrumb a {
  font-size: 0.8rem;
  color: rgb(26, 12, 171);
}

.breadcrumb_item {
  padding-left: 5px;
  padding-right: 5px;
}
.breadcrumb_item_home {
  padding-right: 5px;
}

.breadcrumb::-webkit-scrollbar {
  height: 5px; /* スクロールバーの高さ */
}
 
.breadcrumb::-webkit-scrollbar-thumb {
  background: rgb(120, 120, 120); /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
 
.breadcrumb::-webkit-scrollbar-track {
  background: rgb(200, 200, 200); /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}

.breadcrumb span {
  flex-shrink: 0;
}




/* ヘッダーのナビ */
.header_nav {
  position: relative;
}

.header_nav ul {
  display: flex;
  padding: 0;
  font-size: 1.0rem;
  list-style: none;
}

.header_nav li:nth-child(n + 2) {
  margin-left: 30px;
}

.header_nav li a {  
  text-align: center;
  color: rgb(250, 250, 250);
  text-decoration: none;
}

.header_nav li a:hover {
  text-decoration: underline;
}

.header_nav a[target="_blank"]::after {  
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(images/Icon_NewTab_white.png);
  background-size: contain;
  vertical-align: middle;
}

@media (max-width: 730px) {
  .header_container {
    flex-direction: row;
    align-items: center;
  }

  .header_nav {
    visibility: hidden;
    background-color: rgb(5, 5, 5);
    opacity: 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: ease .3s;
    animation: SlideOut .3s linear;
  }
  /* CSSアニメーションの設定 */
  @keyframes SlideOut {
    0% {
      transform: translateX(0);
    }
    99% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .header_nav ul {
    position: absolute;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    margin: 80px 0 0 0;
    padding-left: 0;
    width: 90%;
  }

  .header_nav li:nth-child(n + 2) {
    margin-left: 0;
  }

  .header_nav li a {
    display: block;
    width: 100%;
    border-bottom: solid 1px rgb(221, 221, 221);
    margin-left: 0%;
    padding: 10px;
    font-size: 1.2rem;
  }
}


/* ハンバーガーメニュー */
.header_hamburger {
  display: none;
}
@media (max-width: 730px) {
  .header_hamburger {
    display: block;
    background-color: rgb(5, 5, 5);
    width: 24px;
    height: 100%;
    padding: 0;
    z-index: 9000;
  }

  /* ハンバーガーメニューの線 */
  .header_hamburger span {
    width: 100%;
    height: 2px;
    background-color: rgb(250, 250, 250);
    position: relative;
    transition: ease .3s;
    display: block;
  }

  .header_hamburger span:nth-child(1) {
    top: 0;
  }

  .header_hamburger span:nth-child(2) {
    margin: 7px 0;
  }

  .header_hamburger span:nth-child(3) {
    top: 0;
  }


  .header_nav.active {
    visibility: visible;
    background-color: rgb(5, 5, 5);
	  opacity: 1;
    overflow: scroll;
    /* transform: translateX(0); */
    animation: SlideIn .3s linear;
  }
  /* CSSアニメーションの設定 */
  @keyframes SlideIn {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }


  /* ハンバーガーメニュークリック後 */
  .header_hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(405deg);
  }

  .header_hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header_hamburger.active span:nth-child(3) {
    top: -9px;
    transform: rotate(-405deg);
  }
}



/* フッター */
footer {
  text-align: center;
  padding: 26px 0;
}
footer p {
  font-size: 0.875rem;
}

#fixed_link {
  display: flex;
  align-items: center;
  position: fixed;
  top: 2px;
  right: 20px;
  z-index: 91;
  }
#fixed_link a {
  display: inline-block;
  text-align: center;
  padding: 3px 5px;
  border-radius: 2px;
  background-color: rgba(217, 180, 122, .7);
}
#fixed_link .logo {
  height: 30px;
}
@media (max-width: 1330px) {
  #fixed_link {
    top: auto;
    bottom: 20px;
    left: auto;
    z-index: 0;
  }  
}
@media (max-width: 600px) {
  #fixed_link a {
    padding: 1px 2px;
  }
  #fixed_link .logo {
    height: 30px;
  }
}



/* modalイメージ */
.modal_wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  pointer-events: none;
  opacity: 0;
  transition: 0.25s ease-out;
  padding: 0 4%;
  z-index: 8000;
}

.modal_wrapper.show {
  opacity: 1;
  pointer-events: all;
}

.modal_image {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  opacity: 0;
  transition: 0.5s ease-out;
}
.modal_image.show {
  opacity: 1;
  cursor: pointer;
}

.modal_previous
,.modal_next {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px rgba(122, 122, 122, 0.8);
  background-color: rgba(250, 250, 250, 0.9);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  cursor: pointer;
}
.modal_previous {
  left: 3%;
}
.modal_next {
  right: 3%;
}

.modal_previous::before
, .modal_next::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover    ;
  background-position: center center;
  vertical-align: middle;
}
.modal_previous::before{
  background-image: url(images/leftarrow_icon.svg);
}
.modal_next::before{
  background-image: url(images/rightarrow_icon.svg);
}

@media (max-width: 600px) {
  .modal_wrapper {
    /* display: initial; */
    flex-direction: column;
    justify-content: space-around;
    padding-top: 20%;
    padding-bottom: 20%;
  }
  .modal_image {
    max-width: 95%;
    max-height: 95%;
  }
  .modal_previous
  ,.modal_next {
    background-color: rgba(250, 250, 250, 0.5);
  }
}

.grayout {
  display: none;
  background-color: gray;
  cursor: default;
}



/* サイドバー */
.sidebar_widgets {
  list-style: none;
}

/* サイドバー カレンダー用 */
.sidebar_widgets td a {
  font-weight: bold;
}

#wp-calendar td:last-of-type,
#wp-calendar td:last-of-type a,
#wp-calendar th:last-of-type {
  color: red;
}



/* ページ全体 */
/* 
.bk_gray {
  background-color: rgb(252, 252, 252);
} 
*/

.contentsbox_shadow {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  margin-bottom: 40px;
}


/* 文字装飾 */
.text_align_center {
  text-align: center;
}


.ornament1 {
  position: relative;
  padding: 0;
  text-align: left;
}
.ornament1::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}
.ornament1 span {
  position: relative;
  padding-right: 1rem;
  background: #fff;
}



.both_ends_lines {
  /* text-align: center; */
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 50px;
}
.both_ends_lines::before, .both_ends_lines::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: black;
}
.both_ends_lines::before {
  left: 0;
}
.both_ends_lines::after {
  right: 0  
}



/* アニメーション */
/* スクロールでふわっと表示 */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}




/*----------------------------
/* WordPress共通
----------------------------*/
/* カテゴリー */
ul.post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.post-categories > li {
  display:inline-block;
  background-color: rgb(241, 241, 241);
  font-size: 0.7rem;
  padding: 0 8px;
}


/* メディアとテキスト */
.wp-block-media-text {
  margin-bottom: 2rem;
}

/* イメージ、ギャラリー */
.wp-block-image {
  padding: 10px;
}



/*----------------------------
/* タグ */
.tag {
  display: inline-block;
  margin-left: 10px;
}

.tag::before {
  content: '';
  display: inline-block;
  background-image: url(images/tag.svg);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle; 
  padding-right: 10px;
}
.tag .tag_item {  
  display: inline-block;
  font-size: 0.8rem;
  /* border: 1px solid rgb(222, 222, 222); */
  border-radius: 4px;
  padding: 0 3px;
  margin: 5px 5px 5px 0;
}



/* ホームページ */
/* front-page.php */
#home_image {
  background-image: url(images/top_image.jpg);
  height: 80vh;
  min-height: 300px;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  #home_image{
    margin-bottom: 30px;
  }
}

.home_contents {
  padding-top: 10px;
  margin-bottom: 15px;
}
@media (max-width: 600px){
  .home_contents {
    /* padding-bottom: 10px;
    margin-bottom: 40px; */
  }
}

.home h2 {
  margin-top: 1rem;
}


.home_grid_container {
  display: grid;
  position: relative;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 10px;
  margin-bottom: 10px;
}

.home_blog_content .thumbnail {
  display: block;
}

.home_blog_content p {
  font-size: 1.0rem;
  line-height: 1.2;
  padding-top: 0.1rem;
}

.home_blog_content img {
  display: block;
  width: 280px;
  height: 180px;  
  object-fit: cover;
  object-position: center center;
}

.home_blog_content .post_date {
  color: black;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}


.home_list {
  margin-bottom: 10px;
}
.home_list dl {
  display: flex;
}
.home_list dl:nth-child(n+1) {
  margin-top: 5px;
}

.home_list dt {
  flex-shrink: 0;
  margin-right: 10px;
}

/* front-page.php ここまで */



/* プロフィール */
.profile_container {
  display: flex;
  align-items: start;
  margin-top: 15px;
}

.profile_image {
  flex-shrink: 0;
  width: 180px;
  pointer-events: none;
}

.profile_message {
  margin-left: 20px;
}

@media (max-width: 700px) {
  .profile_container {
    flex-direction: column;
  }

  .profile_message {
    margin-top: 15px;
    margin-left: auto;
  }

}

/* ここまで プロフィール */



/* location
  link */
  #location p
  , #link p {
    padding: 12px 10px;
  }
  
  #location table
  , #link table
  , .tableTypeA {
    border-collapse: collapse;
    max-width: 640px;
  }
  #location table
  , #link table {
    margin: 2px 10px 30px 10px;
  }
  .tableTypeA {
    margin: 2px 10px 10px 10px;
  }
  
  #location th, #location td
  , #link th, #link td
  , .tableTypeA th, .tableTypeA td {    
    text-align: left;
    font-weight: normal;
    border-bottom: 1px solid #646566;
  }
  #location th, #location td
  , #link th, #link td {
    padding: 14px;
  }
  .tableTypeA th, .tableTypeA td {
    padding: 10px;
  }
  
  #location td ul
  , #link td ul
  , .tableTypeA td ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  #location iframe {
    width: 100%;
    margin-bottom: 40px;
  }  
  
/* ここまで 
  location
  link */



/* フォーム */
/* 問い合わせ */
form {
  margin-left: 15px;
}

label {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.contact_input {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(128, 128, 128);
  padding: 5px;
  font-size: 1rem;
  width: 100%;
  max-width: 380px;
}

.contact_button {
  border: solid 1px rgba(122, 122, 122, 0.8);
  border-radius: 3px;
  padding: 0.5rem 2.5rem;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ここまで問い合わせ */




/* single.php
, page.php
, aside.php
, contents 一般 */
.single_contents
,.page_contents
, .contents {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single_contents article header
,.page_contents article header {
  padding-bottom: 20px;
  border-bottom: solid 1px black;
  margin-bottom: 20px;
}

.page_contents article h2 {
  border-left: 5px solid #000;
  padding: 5px 0.5rem;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

.single_contents article .post_date
,.page_contents article .post_date {
  display: inline-block;
  font-size: 0.8rem;
}

.single_contents article .post_thumb
,.page_contents article .post_thumb {
  margin-bottom: 20px;
}
.single_contents article .post_thumb img
,.page_contents article .post_thumb img {
  /* max-height: 300px; */
  /* max-width: 95%; */
}


.single_contents article ol
,.single_contents article ul
,.page_contents article ol
,.page_contents article ul {
  list-style-position: outside;
  padding-left: 1.5rem;
}

.single_contents article li
, .page_contents article li {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}


.single_contents p
,.page_contents p {
  font-size: 1.0rem;
  padding-top: 0.4rem;
  padding-bottom: 0.6rem;
}


/* 
page.php
*/
/* 固定ページ用 2列コンテナ */
 .page_contents .container {
  display: flex;
  align-items: start;
  padding-top: 0px;
  padding-bottom: 15px;
}
.page_contents h2 {
  
}
.page_contents h3 {
  padding-top: 0.5rem;
}
.page_contents .container .description
,.page_contents .container .picture {
  flex-grow: 1;
}
.page_contents .container .description {
  padding-right: 10px;
  width: 60%;
}
.page_contents .container .picture {
  padding-left: 10px;
  width: 40%;
}
.page_contents .container .picture img {
  width: 100%;
  border: 1px solid gray;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .page_contents .container {
    flex-direction: column;
  }
  .page_contents .container .description
  ,.page_contents .container .picture {
    width: 100%;
  }
  .page_contents .container .description {
    order: 2;
    padding-top: 10px;
    padding-right: 0;
  }
  .page_contents .container .picture {
    order: 1;
    padding-left: 0;
  }
}

/* 固定ページ用 2列コンテナ　ここまで */



/* 
single.php 
*/
.single_contents {
  display: flex;
  top: 0;
  justify-content: space-between;
}
.single_contents main {
  width: 74%;
  order: 1;
}
.single_contents aside {
  position: sticky;
  top: 60px;
  align-self: flex-start;
  width: 22%;
  padding-top: 20px;
  order: 2;
}

.single_contents aside .aside_title {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .single_contents {
    flex-direction: column;
  }
  .single_contents main
  ,.single_contents aside {
    width: 100%
  }
}

.single_paging a
, .single_paging_nolink {
  display: inline-block;
  font-size: 1rem;  
  border: solid 1px rgba(122, 122, 122, 0.8);
  border-radius: 3px;
  padding: 0.2rem 0.8rem;
  margin: 20px 10px 10px 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.single_paging a {
  color: rgb(0, 0, 0);
}
.single_paging_nolink {
  color: rgb(122, 122, 122);
}





/* archive.php, searach.php */
.archive_contents {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 50px;
}
.archive_contents main {
  width: 74%;
  order: 1;
}
.archive_contents aside {
  position: sticky;
  top: 60px;
  align-self: flex-start;
  width: 22%;
  padding-top: 20px;
  order: 2;
}
@media (max-width: 600px) {
  .archive_contents {
    flex-direction: column;
  }
  .archive_contents main
  ,.archive_contents aside {
    width: 100%
  }
}

.archive_loop {
  margin-top: 20px;
  margin-bottom: 20px;
}
.archive_contents h1 {
  font-size: 1.1rem;
  padding-top: 0;
}
.archive_contents h2 {
  font-size: 1rem;
}
.archive_item {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(122, 122, 122, 0.1);
}
.archive_item_link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
}
.archive_item .post_date {
  display: inline-block;
  font-size: 0.8rem;
}

.archive_item .post_thumb img {
  width: 250px;
  max-width: none;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.archive_item .content {
  padding-left: 10px;
  flex-grow: 1;
}

@media (max-width: 500px) {
  .archive_item {
    flex-direction: column;
  }

  .archive_item .post_thumb img {
    width: 100%;
    margin-bottom: 10px;
  }
}

.archive_item .excerpt {
  font-size: 0.8rem;
}

.archive_contents aside .aside_title {
  font-size: 1rem;
}

/* archive.php ここまで */



/* archive pagination */
.nav-links {
  text-align: center;
  margin-bottom: 30px;
}

.page-numbers {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 3px;
  font-weight: 500;
}

a.page-numbers:hover {
  background-color: transparent;
  /* color: #FFF; */
}

.page-numbers.current {
  /* background-color: #f0264b; */
  color: rgb(128, 128, 128);
}


/* searchform.php */
.searchform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px auto 30px auto;
  width: 100%;
}
label[for="searchword"] {
  display: none;
}
.search_text {
  font-size: 1rem;
  flex-grow: 1;
  flex-shrink: 1;
  background: rgba(255,255,255,.8);
  border: 0.5px rgb(128, 128, 128) solid;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 0px 6px;
  margin-right: 0.2rem;
}
@media (max-width: 600px) {
  .search_text {
    font-size: 16px;
  }
}
.search_button{
  font-size: 1rem;
  border: solid 1px rgba(122, 122, 122, 0.8);
  border-radius: 3px;
  padding: 0.1rem 1rem;
  margin: 6px auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* #searchform 検索フィールド ここまで */
